@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1D3A52;
    --secondary-color: #AB7A37;
    --tertiary-color: #E5E1DC;
    --white-color: #FDFBF8;
    --primary-cta-color: #1D3A52;
    --secondary-cta-color: #AB7A37;
    --color-light: #6B6B6B;
    --color-dark: #000000;
    --destructive: #e74c3c;
    --warning: #f39c12;
    --success: #27ae60;

    --border-radius: 8px;
    --radius-full: 50%;

    --primary-shadow: rgba(29, 58, 82, 0.1);
    --secondary-shadow: rgba(171, 122, 55, 0.3);
    --black-shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Lato', sans-serif;
    padding-top: 80px;
}

body::-webkit-scrollbar {
    width: 5px;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
}

.flexCenter {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flexBetween {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flexAround {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.marginCenter {
    margin: 0 auto;
}

img {
    width: 100%;
    vertical-align: middle;
}

a {
    text-decoration-line: none;
}

ul {
    list-style-type: none;
}

.text-center {
    text-align: center;
}

.secondaryButton {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.secondaryButton:hover {
    background-color: var(--secondary-cta-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 164, 91, 0.3);
}

.section-style {
    padding: 30px 60px;
}

.animate {
    animation-play-state: running !important;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: var(--white-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

nav {
    padding: 20px 60px;
    position: relative;
}

.logo {
    width: 50px;
    height: auto;
    scale: 1.5;
}

.footerlogo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.sidelogo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.logo a {
    text-decoration: none;
}

.nav-buttons {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-buttons li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-buttons li a:hover {
    color: var(--secondary-color);
}

.nav-buttons li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-buttons li a:hover::after {
    width: 100%;
}

/* Active Page State */
.nav-buttons li a.active {
    color: var(--secondary-color);
}

.nav-buttons li a.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--white-color);
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.4s ease;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.sidebar-logo span {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.close-btn {
    background: none;
    border: none;
    font-size: 36px;
    color: var(--primary-color);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--secondary-color);
}

.sidebar-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
}

.sidebar-nav li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
}

.sidebar-nav li a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

/* Sidebar Active State */
.sidebar-nav li a.active {
    color: var(--secondary-color);
    padding-left: 10px;
}

.sidebar-footer {
    margin-top: auto;
}

.sidebar-footer .secondaryButton {
    width: 100%;
}

/* Hero Section */
.hero-section {
    gap: 60px;
    background-image: url('../Images/heroImage.png');
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 80px);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

@keyframes hero-content {
    0% {
        opacity: 0;
        transform: translate(-40px, -40px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
    animation: hero-content 3s ease forwards;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 16px;
    color: var(--color-light);
    line-height: 1.6;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.primaryButton {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: var(--border-radius);
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.primaryButton:hover {
    background-color: var(--primary-cta-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 42, 72, 0.3);
}

.transparentButton {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.transparentButton:hover {
    color: var(--white-color);
}

.hero-image {
    flex: 1;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Who We Are Section */
.who-we-are {
    display: flex;
    flex-direction: column;
    background-color: var(--white-color);
}

.who-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    background-color: var(--white-color);
}

@keyframes who-left-content {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.who-left-content {
    width: 100%;
    animation: who-left-content 3s ease forwards;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    width: 100%;
    grid-column: 1 / -1;
    margin-top: 20px;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 300px;
    height: 2px;
    background-color: var(--primary-color);
}

.section-title::before {
    left: 0%;
}

.section-title::after {
    right: 0%;
}

.who-description {
    font-size: 14px;
    color: var(--color-light);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px 20px 20px 0px;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 280px;
}

.contact-icon {
    background-color: var(--secondary-color);
    color: var(--white-color);
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 14px;
    color: var(--color-light);
    font-weight: 500;
}

.contact-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Right Form */

@keyframes who-right-form {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.who-right-form {
    width: 100%;
    background-color: var(--tertiary-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
    animation: who-right-form 3s ease forwards;
}

.form-header {
    text-align: center;
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 1px;
    background-color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}

.required {
    color: var(--destructive);
    margin-left: 2px;
}

.form-group input,
.form-group textarea {
    padding: 8px 16px;
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    background-color: var(--white-color);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(28, 42, 72, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: var(--secondary-cta-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 164, 91, 0.3);
}

/* Who We Are Bottom Features */
.who-bottom {
    width: 100%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px 60px;
    margin-top: 80px;
}

@keyframes feature-box {
    0% {
        opacity: 0;
        transform: scale(2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white-color);
    animation: feature-box 3s ease forwards;
}

.feature-box i {
    font-size: 32px;
    color: var(--white-color);
}

.feature-box span {
    font-size: 16px;
    font-weight: 600;
}

.divider {
    display: none;
}

/* What We Do Section */
.what-we-do {
    background-color: var(--tertiary-color);
    padding-bottom: 60px;
}

.section-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
}

.section-description {
    font-size: 14px;
    color: var(--color-light);
    text-align: center;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 60px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.dots-top-left {
    position: absolute;
    top: -46px;
    left: -35px;
    width: 80px;
    height: auto;
    opacity: 0.9;
    z-index: 0;
}

.dots-bottom-right {
    position: absolute;
    bottom: -46px;
    right: -35px;
    width: 80px;
    height: auto;
    opacity: 0.9;
    z-index: 0;
}

@keyframes service-card {
    0% {
        opacity: 0;
        transform: scale(1.05) translateY(-40px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
}

/* Service Card */
.service-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 280px;
    height: 100%;
    z-index: 1;
    animation: service-card 3s ease forwards;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background-color: var(--secondary-color);
}

.service-card:hover .card-title,
.service-card:hover .card-description,
.service-card:hover .card-link {
    color: var(--white-color);
}

.service-card:hover .card-icon {
    background-color: var(--color-light);
    color: var(--white-color);
}

.service-card:hover .card-link {
    border-bottom-color: var(--white-color);
}

/* Card Icon */
.card-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 28px;
}

/* Card Title */
.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

/* Card Description */
.card-description {
    font-size: 14px;
    color: var(--color-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    transition: color 0.3s ease;
}

/* Card Link */
.card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.card-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* Our Promise Section */
.our-promise {
    background-color: var(--white-color);
}

.promise-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

/* Promise Banner */
.promise-banner {
    background: linear-gradient(to bottom, var(--secondary-color) 50%, var(--white-color) 50%);
    padding: 60px 40px;
}

.banner-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--white-color);
    text-align: center;
    margin-bottom: 50px;
}

/* Promise Features */
.promise-features {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
}

.promise-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@keyframes promise-wrapper {
    0% {
        opacity: 1;
        transform: translate3d(-220px, 0, 0) rotate(-720deg) scale(1.2);
        transform-origin: center center;
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
        transform-origin: center center;
    }
}

.promise-wrapper {
    background-color: var(--white-color);
    padding: 10px;
    border-radius: var(--radius-full);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    animation: promise-wrapper 3s ease forwards;
}

/* Promise Icon Circle */
.promise-icon {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    background-color: var(--white-color);
    border: 4px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.promise-icon i {
    font-size: 48px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.promise-item:hover .promise-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Promise Label */
.promise-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-cta-color);
    padding: 30px 0px;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

@keyframes cta-content {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.cta-content {
    flex: 1;
    animation: cta-content 3s ease forwards;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 10px;
}

.cta-description {
    font-size: 14px;
    color: var(--white-color);
    line-height: 1.6;
    max-width: 600px;
}

@keyframes cta-button-wrapper {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.cta-button-wrapper {
    flex-shrink: 0;
    animation: cta-button-wrapper 3s ease forwards;
}

.cta-button {
    background-color: var(--secondary-cta-color);
    color: var(--primary-cta-color);
    border: none;
    border-radius: var(--border-radius);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 164, 91, 0.3);
}

.cta-button i {
    font-size: 18px;
}

.cta-button:hover {
    background-color: var(--secondary-cta-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 164, 91, 0.4);
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--tertiary-color);
}

.why-container {
    margin: 50px auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

/* Left Side - Checklist */
.why-checklist {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@keyframes why-checklist {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.why-checklist>.checklist-item {
    opacity: 0;
    transform: translateX(-30px);
    animation: why-checklist 0.5s ease forwards;
    animation-delay: 0s;
}

.why-checklist>.checklist-item:nth-child(1) {
    animation-delay: 0.5s;
}

.why-checklist>.checklist-item:nth-child(2) {
    animation-delay: 1s;
}

.why-checklist>.checklist-item:nth-child(3) {
    animation-delay: 1.5s;
}

.why-checklist>.checklist-item:nth-child(4) {
    animation-delay: 2s;
}

.why-checklist>.checklist-item:nth-child(5) {
    animation-delay: 2.5s;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.check-icon {
    flex-shrink: 0;
}

.check-icon i {
    font-size: 32px;
    color: var(--secondary-color);
}

.check-text {
    font-size: 18px;
    color: var(--color-light);
    font-weight: 500;
    margin: 0;
}

/* Right Side - Golden Card */

@keyframes why-card {
    0% {
        opacity: 0.2;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.why-card {
    flex: 1;
    background-color: var(--secondary-color);
    padding: 100px 50px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: why-card 3s ease forwards;
}

.card-main-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.card-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 8px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* Decorative Dots */
.dots-top-right {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: auto;
    opacity: 0.6;
    z-index: 1;
}

.dots-bottom-left {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 80px;
    height: auto;
    opacity: 0.6;
    z-index: 1;
}

/* Latest Blogs Section */
.latest-blogs {
    background-color: var(--white-color);
}

.blogs-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Blog Card Base Styles */
.blog-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-image {
    width: 100%;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-date {
    font-size: 14px;
    color: var(--color-light);
    margin-bottom: 20px;
}

.blog-button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.blog-button:hover {
    background-color: var(--secondary-cta-color);
    transform: translateX(5px);
}

/* Featured Blog (Large Left) */
.featured-blog {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}

.featured-blog .blog-image {
    height: 300px;
    border-radius: var(--border-radius);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.featured-blog .blog-title {
    font-size: 24px;
}

/* Right Column - 3 Smaller Blogs */
.blogs-column {
    grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.small-blog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: auto;
}

.small-blog .blog-image {
    height: 100%;
    min-height: 180px;
    border-radius: var(--border-radius);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.small-blog .blog-title {
    font-size: 18px;
}

.small-blog .blog-content {
    padding: 20px;
}

/* Contact Us Section */
.contact-us {
    background-color: var(--tertiary-color);
}

.contact-description {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
}

.contact-description-sub {
    font-size: 14px;
    color: var(--color-light);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 60px;
}

@keyframes contact-cards {
    0% {
        opacity: 0;
        transform: scale(1.05) translateY(-40px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Contact Cards Grid */
.contact-cards {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    animation: contact-cards 3s ease forwards;
}

.contact-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-card-icon i {
    font-size: 32px;
    color: var(--white-color);
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-card-text {
    font-size: 14px;
    color: var(--color-light);
    line-height: 1.6;
    margin: 0;
}

/* Footer Section */
.footer {
    background-color: var(--primary-color);
    /* padding: 60px 60px 40px 60px; */
    color: var(--white-color);
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* Company Info Column */
.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

/* Quick Links Column */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-menu li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* Social Media Column */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.move-to-top-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(214, 164, 91, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.move-to-top-btn:hover {
    background-color: var(--secondary-cta-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(214, 164, 91, 0.4);

}

/* ============================================ */
/* About Page Hero Section */
/* ============================================ */

.about-hero-section {
    background-color: var(--tertiary-color);
}

.about-hero-container {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.about-hero-content {
    flex: 1;
    max-width: 550px;
}

.about-hero-heading i {
    color: var(--secondary-color);
    font-size: 48px;
}

.about-hero-image {
    flex: 1;
    max-width: 450px;
    position: relative;
    padding: 20px;
    border-radius: var(--border-radius);
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================ */
/* About Page Contact Us Section */
/* ============================================ */

.about-contact-section {
    background-color: var(--primary-color);
    padding: 60px 0;
}

.about-contact-section .contact-title {
    color: var(--white-color);
}

.about-contact-section .contact-title::before,
.about-contact-section .contact-title::after {
    background-color: var(--white-color);
}

.about-contact-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 40px;
}

.about-contact-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 550px;
}

.about-contact-card {
    display: flex;
    gap: 25px;
    align-items: center;
    padding: 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

.about-contact-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-contact-icon i {
    font-size: 24px;
}

.about-contact-text {
    flex: 1;
}

.contact-card-description {
    font-size: 14px;
    color: var(--color-light);
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-card-info {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

/* ============================================ */
/* Vision & Mission Section */
/* ============================================ */

.vision-mission-section {
    background-color: var(--secondary-color);
    padding: 20px 0;
}

.vision-mission-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin: 0 auto;
}

.vision-card,
.mission-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.vm-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(35deg, var(--primary-color), #152038);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(28, 42, 72, 0.3);
    transition: all 0.3s ease;
}

.vision-card:hover .vm-icon,
.mission-card:hover .vm-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(28, 42, 72, 0.5);
}

.vm-icon i {
    font-size: 24px;
    color: var(--white-color);
}

.vm-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.vm-description {
    font-size: 15px;
    color: var(--color-light);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 25px;
}

/* ============================================ */
/* Blog Hero Section */
/* ============================================ */

.blog-hero-section {
    background-color: var(--tertiary-color);
    padding: 30px 0;
    background-image: url('/assets/Images/blog1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.blog-hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.blog-hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.blog-hero-container h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.blog-hero-container p {
    font-size: 18px;
    color: var(--color-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.article-date-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.article-date-author .date,
.article-date-author .author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    padding: 8px 12px;
    border-radius: var(--border-radius);
}

.article-date-author i {
    color: var(--primary-color);
    font-size: 18px;
}

.article-date-author span {
    font-weight: 500;
}

.blog-divider {
    width: 80%;
    height: 2px;
    background-color: var(--secondary-color);
    margin: 20px auto;
}

.blog-cta-section {
    background-color: var(--secondary-color);
}

.blog-cta-button {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(28, 42, 72, 0.3);
}

.blog-cta-button:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 10px 20px rgba(28, 42, 72, 0.3);
}

.common-problms p {
    font-size: 15px;
    color: var(--color-light);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

.blog-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

/* ============================================ */
/* Contact Page Styles */
/* ============================================ */

.social-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 550px;
}

.contact-who-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* ============================================ */
/* Service Pages Styles */
/* ============================================ */

.service-icon {
    text-align: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 48px;
    color: var(--primary-color);
}

.service-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.how-we-help p,
.why-triangle-debt-defense p {
    font-size: 15px;
    color: var(--color-light);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.service-divider {
    width: 80%;
    height: 2px;
    background-color: var(--secondary-color);
    margin: 20px auto;
}

/* ============================================ */
/* Practice Areas Page Styles */
/* ============================================ */

.practiseAreasList li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-light);
}

.practiseAreasList li i,
.hero-title i {
    color: var(--secondary-color);
}

.practise-areas {
    background-color: var(--white-color);
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
    margin-top: 50px;
}

.practice-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.practice-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.practice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.practice-card:hover .practice-image img {
    transform: scale(1.05);
}

.practice-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.practice-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.practice-description {
    font-size: 13px;
    color: var(--color-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.practice-btn {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: none;
    border-radius: var(--border-radius);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.practice-btn:hover {
    background-color: var(--secondary-cta-color);
    transform: translateX(5px);
}

.practise-cta-section {
    background-color: var(--secondary-color);
}

.practise-cta-button {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(28, 42, 72, 0.3);
}

.practise-cta-button:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 10px 20px rgba(28, 42, 72, 0.3);
}

/* ========================================
   MEDIA QUERIES - ALL CONSOLIDATED HERE
   ======================================== */

/* Responsive - Small Screens (992px) */
@media (max-width: 992px) {
    nav {
        padding: 20px 40px;
    }

    .nav-buttons {
        gap: 25px;
    }

    .section-style {
        padding: 30px 40px;
    }

    .hero-section {
        gap: 40px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 15px;
    }

    .who-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-title::before,
    .section-title::after {
        width: 175px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-subtitle {
        font-size: 24px;
    }

    .section-description {
        font-size: 13px;
        margin-bottom: 50px;
    }

    .promise-banner {
        padding: 50px 30px;
    }

    .promise-features {
        gap: 30px;
    }

    .promise-icon {
        width: 100px;
        height: 100px;
    }

    .promise-icon i {
        font-size: 40px;
    }

    .promise-label {
        font-size: 14px;
    }

    .banner-text {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .promise-subtitle {
        font-size: 22px;
    }

    .cta-container {
        gap: 40px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 15px;
    }

    .cta-description {
        font-size: 13px;
    }

    .why-container {
        gap: 60px;
    }

    .checklist-item {
        gap: 15px;
    }

    .check-icon i {
        font-size: 28px;
    }

    .check-text {
        font-size: 16px;
    }

    .card-main-title {
        font-size: 28px;
    }

    .card-subtitle {
        font-size: 16px;
    }

    .dots-top-right,
    .dots-bottom-left {
        width: 70px;
    }

    /* Blog Section - Featured top, small blogs below */
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Featured blog - image left, content right */
    .featured-blog {
        grid-column: 1;
        flex-direction: row;
    }

    .featured-blog .blog-image {
        width: 45%;
        height: auto;
        min-height: 280px;
        flex-shrink: 0;
    }

    .featured-blog .blog-content {
        width: 55%;
    }

    .featured-blog .blog-title {
        font-size: 22px;
    }

    /* Small blogs column - display in one row */
    .blogs-column {
        grid-column: 1;
        flex-direction: row;
        gap: 20px;
    }

    /* Small blogs - vertical layout (image top, content bottom) */
    .small-blog {
        flex-direction: column;
        grid-template-columns: none;
        display: flex;
        flex: 1;
    }

    .small-blog .blog-image {
        width: 100%;
        height: 200px;
        min-height: auto;
        flex-shrink: 0;
    }

    .small-blog .blog-content {
        width: 100%;
        padding: 20px;
        order: 2;
    }

    .small-blog .blog-title {
        font-size: 15px;
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-description {
        font-size: 16px;
    }

    .contact-description-sub {
        font-size: 13px;
        margin-bottom: 50px;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .contact-card-icon {
        width: 60px;
        height: 60px;
    }

    .contact-card-icon i {
        font-size: 28px;
    }

    .footer {
        padding: 50px 40px 35px 40px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-logo {
        font-size: 20px;
    }

    .footer-description {
        font-size: 13px;
    }

    .secondaryButton {
        padding: 12px 18px;
    }

    /* About Page - 992px */
    .about-hero-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-hero-content,
    .about-hero-image {
        max-width: 100%;
    }

    .about-hero-heading {
        font-size: 28px;
    }

    .about-contact-container {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .about-contact-section .who-right-form,
    .about-contact-cards {
        max-width: 100%;
        width: 100%;
    }

    .vision-mission-section {
        padding: 60px 0;
    }

    .vision-mission-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-card,
    .mission-card {
        padding: 40px 30px;
    }

    .about-hero-heading i {
        font-size: 32px;
    }

    /* Blog Page - 992px */
    .blog-hero-section {
        padding: 60px 0;
    }

    .blog-heading {
        font-size: 28px;
    }

    .blog-hero-container h1 {
        font-size: 36px;
    }

    .blog-hero-container p {
        font-size: 16px;
    }

    .article-date-author {
        gap: 30px;
    }

    /* Contact Page - 992px */
    .contact-who-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .social-contact-cards {
        max-width: 100%;
        width: 100%;
    }

    /* Services Page - 992px */
    .service-icon i {
        font-size: 42px;
    }

    .service-heading {
        font-size: 28px;
    }

    /* Practice Areas Page - 992px */
    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Responsiveness - Tablets (768px) */
@media (max-width: 768px) {
    nav {
        padding: 20px 30px;
    }

    .nav-buttons,
    .contact-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .section-style {
        padding: 30px 30px;
    }

    .hero-section {
        flex-direction: column;
        gap: 40px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 50px 0px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 100%;
        order: -1;
    }

    .who-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-left-content,
    .who-right-form {
        width: 100%;
        max-width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .section-title::before,
    .section-title::after {
        width: 100px;
    }

    .contact-info {
        max-width: 100%;
    }

    .who-right-form {
        padding: 30px;
    }

    .who-bottom {
        flex-direction: column;
        gap: 25px;
        padding: 30px;
        margin-top: 40px;
    }

    .feature-box {
        width: 100%;
        justify-content: center;
    }

    .divider {
        display: flex;
        height: 2px;
        background-color: var(--white-color);
        width: 80%;
        margin: 10px auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        min-height: auto;
        padding: 35px 25px;
    }

    .section-subtitle {
        font-size: 22px;
    }

    .section-description {
        margin-bottom: 40px;
    }

    .promise-banner {
        padding: 40px 20px;
    }

    .promise-features {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }

    .promise-item {
        width: calc(50% - 20px);
        min-width: 150px;
    }

    .promise-icon {
        width: 90px;
        height: 90px;
    }

    .promise-icon i {
        font-size: 36px;
    }

    .banner-text {
        font-size: 16px;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        max-width: 100%;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }

    .why-container {
        flex-direction: column;
        gap: 50px;
    }

    .why-checklist {
        width: 100%;
        gap: 25px;
    }

    .why-card {
        width: 100%;
        padding: 45px 35px;
    }

    .card-main-title {
        font-size: 26px;
    }

    .card-subtitle {
        font-size: 15px;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .dots-top-left {
        top: -46px;
        left: 0px;
    }

    .dots-bottom-right {
        bottom: -46px;
        right: 0px;
    }

    /* Featured blog - image top, content bottom */
    .featured-blog {
        grid-column: 1;
        flex-direction: column;
    }

    .featured-blog .blog-image {
        width: 100%;
        height: 250px;
        min-height: auto;
    }

    .featured-blog .blog-content {
        width: 100%;
    }

    /* Small blogs column - stack vertically */
    .blogs-column {
        grid-column: 1;
        flex-direction: column;
        gap: 25px;
    }

    /* Small blogs - image left, content right (each takes full row) */
    .small-blog {
        flex-direction: row;
        display: flex;
    }

    .small-blog .blog-image {
        width: 40%;
        height: auto;
        min-height: 200px;
    }

    .small-blog .blog-content {
        width: 60%;
        padding: 25px;
    }

    .small-blog .blog-title {
        font-size: 18px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }

    .contact-description-sub br {
        display: none;
    }

    .footer {
        padding: 40px 30px 30px 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-about {
        grid-column: 1;
    }

    .footer-title {
        font-size: 16px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* About Page - 768px */
    .about-hero-section {
        padding: 40px 0;
    }

    .about-hero-heading {
        font-size: 24px;
    }

    .about-hero-heading i {
        font-size: 22px;
    }

    .about-hero-text {
        font-size: 13px;
    }

    .about-contact-section {
        padding: 40px 0;
    }

    .about-contact-cards {
        gap: 25px;
    }

    .about-contact-icon {
        width: 50px;
        height: 50px;
    }

    .about-contact-icon i {
        font-size: 20px;
    }

    .contact-card-description {
        font-size: 13px;
    }

    .contact-card-info {
        font-size: 15px;
    }

    .vision-mission-section {
        padding: 50px 0;
    }

    .vm-icon {
        width: 70px;
        height: 70px;
    }

    .vm-icon i {
        font-size: 32px;
    }

    .vm-title {
        font-size: 24px;
    }

    .vm-description {
        font-size: 14px;
    }

    /* Blog Page - 768px */
    .common-problms p {
        font-size: 14px;
    }

    .blog-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .blog-hero-section {
        padding: 50px 0;
    }

    .blog-hero-container h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .blog-hero-container p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .article-date-author {
        flex-direction: column;
        gap: 15px;
    }

    .article-date-author .date,
    .article-date-author .author {
        font-size: 14px;
    }

    .article-date-author i {
        font-size: 16px;
    }

    /* Services Page - 768px */
    .service-icon {
        margin-bottom: 15px;
    }

    .service-icon i {
        font-size: 38px;
    }

    .service-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .how-we-help p,
    .why-triangle-debt-defense p {
        font-size: 14px;
    }

    /* Practice Areas Page - 768px */
    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .practice-image {
        height: 180px;
    }

    .practice-title {
        font-size: 17px;
    }

    .practice-description {
        font-size: 12px;
    }
}

/* Responsiveness - Mobile (480px) */
@media (max-width: 480px) {
    .section-style {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .primaryButton,
    .secondaryButton {
        width: 100%;
    }

    .section-title {
        font-size: 24px;
    }

    .section-title::before,
    .section-title::after {
        width: 70px;
    }

    .who-description {
        font-size: 13px;
    }

    .contact-info {
        flex-direction: column;
        text-align: center;
    }

    .form-title {
        font-size: 24px;
    }

    .who-right-form {
        padding: 25px;
    }

    .who-bottom {
        padding: 25px 20px;
    }

    .feature-box i {
        font-size: 28px;
    }

    .feature-box span {
        font-size: 14px;
    }

    .section-subtitle {
        font-size: 20px;
    }

    .section-description {
        font-size: 12px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon i {
        font-size: 24px;
    }

    .promise-banner {
        padding: 30px 15px;
    }

    .promise-features {
        flex-direction: column;
        gap: 35px;
    }

    .promise-item {
        width: 100%;
    }

    .promise-icon {
        width: 150px;
        height: 150px;
    }

    .promise-break {
        display: none;
    }

    .promise-icon i {
        font-size: 60px;
    }

    .promise-label {
        font-size: 18px;
    }

    .promise-subtitle {
        font-size: 18px;
    }

    .banner-text {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-subtitle {
        font-size: 14px;
    }

    .cta-description {
        font-size: 12px;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 15px;
    }

    .why-checklist {
        gap: 20px;
    }

    .checklist-item {
        gap: 12px;
    }

    .check-icon i {
        font-size: 24px;
    }

    .check-text {
        font-size: 14px;
    }

    .why-card {
        padding: 35px 25px;
    }

    .card-main-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .card-subtitle {
        font-size: 14px;
    }

    .dots-top-right,
    .dots-bottom-left {
        width: 60px;
    }

    .dots-top-right {
        top: 15px;
        right: 15px;
    }

    .dots-bottom-left {
        bottom: 15px;
        left: 15px;
    }

    .blogs-grid {
        gap: 20px;
    }

    /* Featured blog - image top, content bottom */
    .featured-blog {
        flex-direction: column;
    }

    .featured-blog .blog-image {
        width: 100%;
        height: 200px;
        min-height: auto;
    }

    .featured-blog .blog-content {
        width: 100%;
    }

    .featured-blog .blog-title {
        font-size: 20px;
    }

    /* Small blogs - image top, content bottom */
    .small-blog {
        flex-direction: column;
    }

    .small-blog .blog-image {
        width: 100%;
        height: 180px;
        min-height: auto;
    }

    .small-blog .blog-content {
        width: 100%;
        padding: 20px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 18px;
    }

    .blog-date {
        font-size: 13px;
    }

    .blog-button {
        padding: 10px 24px;
        font-size: 14px;
    }

    .contact-description {
        font-size: 15px;
    }

    .contact-description-sub {
        font-size: 12px;
        margin-bottom: 40px;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .contact-card-icon {
        width: 55px;
        height: 55px;
    }

    .contact-card-icon i {
        font-size: 26px;
    }

    .contact-card-title {
        font-size: 16px;
    }

    .contact-card-text {
        font-size: 13px;
    }

    .footer {
        padding: 35px 20px 25px 20px;
    }

    .footer-container {
        gap: 30px;
    }

    .footer-logo {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-description {
        font-size: 12px;
    }

    .footer-title {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-menu {
        gap: 10px;
    }

    .footer-menu li a {
        font-size: 13px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    /* About Page - 480px */
    .about-hero-section {
        padding: 30px 0;
    }

    .about-hero-container {
        gap: 30px;
    }

    .about-hero-heading {
        font-size: 22px;
        gap: 10px;
    }

    .about-hero-image {
        padding: 15px;
    }

    .about-contact-section {
        padding: 30px 0;
    }

    .about-contact-container {
        gap: 40px;
    }

    .about-contact-card {
        gap: 15px;
        flex-direction: column;
    }

    .about-contact-icon {
        width: 45px;
        height: 45px;
    }

    .about-contact-icon i {
        font-size: 18px;
    }

    .contact-card-description {
        font-size: 12px;
    }

    .contact-card-info {
        font-size: 14px;
    }

    .vision-mission-section {
        padding: 40px 0;
    }

    .vision-card,
    .mission-card {
        padding: 35px 25px;
    }

    .vm-icon {
        width: 60px;
        height: 60px;
    }

    .vm-icon i {
        font-size: 28px;
    }

    .vm-title {
        font-size: 22px;
    }

    .vm-description {
        font-size: 13px;
    }

    /* Blog Page - 480px */
    .common-problms p {
        font-size: 13px;
    }

    .blog-heading {
        font-size: 22px;
    }

    .blog-hero-section {
        padding: 40px 0;
    }

    .blog-hero-container h1 {
        font-size: 26px;
    }

    .blog-hero-container p {
        font-size: 14px;
    }

    .article-date-author .date,
    .article-date-author .author {
        font-size: 13px;
    }

    /* Services Page - 480px */
    .service-icon i {
        font-size: 34px;
    }

    .service-heading {
        font-size: 22px;
    }

    .how-we-help p,
    .why-triangle-debt-defense p {
        font-size: 13px;
    }

    /* Practice Areas Page - 480px */
    .practise-areas {
        padding: 40px 0;
    }

    .practice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .practice-image {
        height: 160px;
    }

    .practice-title {
        font-size: 16px;
    }

    .practice-description {
        font-size: 12px;
    }

}