/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B2E2E;
    /* Dark Reddish-Brown / Maroon */
    --secondary-color: #A0522D;
    /* Orange-Brown */
    --accent-color: #CD853F;
    /* Lighter Orange-Brown */
    --dark-color: #5C1A1A;
    /* Darker Maroon */
    --light-color: #F5F5F0;
    /* Light Off-White */
    --text-color: #2C1810;
    /* Dark Brown */
    --text-light: #6B4E3D;
    /* Medium Brown */
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #8B2E2E 0%, #A0522D 100%);
    --shadow: 0 10px 30px rgba(139, 46, 46, 0.15);
    --shadow-hover: 0 15px 40px rgba(139, 46, 46, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-full {
    max-width: 100%;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(139, 46, 46, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(139, 46, 46, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-main {
    position: relative;
    display: inline-block;
}

.logo-shah {
    display: inline-flex;
    align-items: baseline;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.02em;
    position: relative;
}

.logo-s,
.logo-h,
.logo-h2 {
    color: var(--primary-color);
}

.logo-a-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 2px;
}

.logo-a-text {
    position: relative;
    z-index: 3;
    color: var(--primary-color);
}

.logo-a-arrow-dark,
.logo-a-arrow-light {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 8px solid;
    z-index: 1;
}

.logo-a-arrow-dark {
    border-bottom-color: var(--primary-color);
    top: -2px;
    left: 48%;
}

.logo-a-arrow-light {
    border-bottom-color: var(--secondary-color);
    top: 0px;
    left: 52%;
    z-index: 2;
}

.logo-flower {
    position: absolute;
    top: -20px;
    right: 2px;
    width: 28px;
    height: 18px;
    z-index: 10;
}

.logo-flower-left,
.logo-flower-right {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50% 0 50% 50%;
    transform-origin: center;
}

.logo-flower-left {
    left: 0;
    background: var(--primary-color);
    transform: rotate(-35deg);
    clip-path: polygon(50% 0%, 0% 100%, 50% 50%);
}

.logo-flower-right {
    right: 0;
    background: var(--secondary-color);
    transform: rotate(35deg);
    clip-path: polygon(50% 0%, 100% 100%, 50% 50%);
}

.logo-underline {
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    margin-top: -4px;
    border-radius: 2px;
    transform: scaleX(1.1);
    transform-origin: center;
}

.logo-consultancy {
    font-size: 0.65rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 2px;
    letter-spacing: 0.05em;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 4px;
    display: block;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section - New Design */
.hero-new {
    position: relative;
    overflow: hidden;
    background: var(--light-color);
    padding: 120px 0 0;
    min-height: auto;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-bottom: 0;
}

/* .hero-dots-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(139, 46, 46, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0; */


.hero-container-new {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.hero-content-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding-bottom: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .hero-content-new {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content-new {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1280px) {
    .hero-content-new {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.hero-text-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
    margin: 0;
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 3.5rem;
    }
}

.hero-highlight {
    color: var(--primary-color);
}

.hero-description-new {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
    text-align: justify;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-explore-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-explore-more:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 46, 46, 0.3);
}

.btn-arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-explore-more:hover .btn-arrow-icon {
    transform: translateX(3px);
}

.link-view-services {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.link-view-services:hover {
    color: var(--primary-color);
}

.hero-image-single {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-single-image-wrapper {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero-single-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero-single-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

@media (min-width: 1024px) {
    .hero-single-image-wrapper {
        max-width: 700px;
    }
}

.hero-services-bar {
    background: var(--primary-color);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.service-label {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
}

.service-star {
    color: var(--secondary-color);
    font-size: 1rem;
}

.hero-gradients {
    position: absolute;
    display: flex;
    top: -24rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.gradient-blob {
    position: absolute;
    filter: blur(100px);
    opacity: 0.3;
    animation: gradientFloat 20s ease-in-out infinite;
}

.gradient-blob-1 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    width: 30rem;
    height: 50rem;
    transform: rotate(-60deg) translateX(-10rem);
    animation-delay: 0s;
}

.gradient-blob-2 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    width: 90rem;
    height: 15rem;
    border-radius: 50%;
    transform-origin: top left;
    transform: rotate(-12deg) translateX(-15rem);
    animation-delay: 5s;
}

@keyframes gradientFloat {

    0%,
    100% {
        opacity: 0.2;
        filter: blur(100px);
    }

    50% {
        opacity: 0.4;
        filter: blur(120px);
    }
}

.hero-gradient-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-gradient-container {
    max-width: 85rem;
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-gradient-container {
        padding: 2.5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-gradient-container {
        padding: 4rem 2rem;
    }
}

.hero-gradient-text-wrapper {
    max-width: 48rem;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding: 0.625rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-title-wrapper {
    margin-top: 1.25rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-gradient-title {
    display: block;
    font-weight: 700;
    color: #ffffff;
    font-size: 2.25rem;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-gradient-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-gradient-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 768px) {
    .hero-gradient-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-gradient-title {
        font-size: 3.75rem;
    }
}

.hero-description-wrapper {
    margin-top: 1.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-gradient-description {
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 1px 4px rgba(0, 0, 0, 0.2);
    opacity: 0.98;
}

@media (min-width: 768px) {
    .hero-gradient-description {
        font-size: 1.25rem;
    }
}

.hero-buttons-wrapper {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.hero-btn-primary {
    padding: 0.875rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: #ffffff;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
    min-width: 140px;
    justify-content: center;
}

.hero-btn-primary:hover {
    background: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35), 0 3px 10px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.hero-btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.4), 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-btn-primary:active {
    transform: translateY(-1px);
}

.hero-btn-secondary {
    padding: 0.875rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    justify-content: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3), 0 3px 10px rgba(0, 0, 0, 0.15);
}

.hero-btn-secondary:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn-secondary:active {
    transform: translateY(-1px);
}

.btn-icon {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Hero Section - Old Grid Design (keeping for reference) */
.hero-new {
    position: relative;
    padding: 120px 0 80px;
    background: var(--white);
    overflow: hidden;
}

.hero-container {
    max-width: 85rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hero-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 0 2rem;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 3fr 4fr;
        gap: 2rem;
    }
}

@media (min-width: 1280px) {
    .hero-grid {
        gap: 3rem;
    }
}

.hero-content-col {
    margin-top: 2.5rem;
}

@media (min-width: 1024px) {
    .hero-content-col {
        margin-top: 0;
    }
}

.hero-title-new {
    display: block;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .hero-title-new {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .hero-title-new {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title-new {
        font-size: 3.75rem;
    }
}

.hero-subtitle-new {
    margin-top: 0.75rem;
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-form-wrapper {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .hero-form-wrapper {
        flex-direction: row;
        gap: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-form-wrapper {
        margin-top: 2rem;
    }
}

.hero-input-wrapper {
    width: 100%;
}

@media (min-width: 640px) {
    .hero-input-wrapper {
        width: auto;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.hero-input {
    padding: 0.625rem 1rem;
    display: block;
    width: 100%;
    min-width: 20rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    color: var(--text-color);
    background: var(--white);
}

@media (min-width: 640px) {
    .hero-input {
        padding: 0.75rem 1rem;
    }
}

.hero-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 46, 46, 0.15);
}

.hero-input::placeholder {
    color: #9ca3af;
}

.hero-cta-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    border: 1px solid transparent;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .hero-cta-btn {
        width: auto;
    }
}

.hero-cta-btn:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 46, 46, 0.3);
}

.hero-cta-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 46, 46, 0.2);
}

.hero-brands {
    margin-top: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-brands {
        margin-top: 3rem;
    }
}

.brands-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.brands-logos {
    margin-top: 1rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.brand-logo {
    width: 5rem;
    height: auto;
    color: var(--text-color);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
}

.hero-image-col {
    margin-top: 2.5rem;
}

@media (min-width: 1024px) {
    .hero-image-col {
        margin-top: 0;
    }
}

.hero-image-new {
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image-new:hover {
    transform: scale(1.02);
}

/* Hero Section - Old Design (keeping for reference) */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(92, 26, 26, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--white);
    padding-top: 1rem;
    padding-bottom: 5rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: justify;
}

.about-read-more {
    margin-top: 2rem;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-read-more:hover {
    background: var(--dark-color);
    border-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 46, 46, 0.3);
}

.btn-read-more:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 46, 46, 0.2);
}

.btn-read-more .btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-read-more:hover .btn-icon {
    transform: translateX(5px);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 10px;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    position: relative;
    width: 100%;
    height: 550px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    padding: 0;
    overflow: hidden;
}

.dummy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
    border-radius: 0 0 20px 20px;
    text-align: center;
}

.image-caption h4 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.image-caption p {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.image-placeholder i {
    font-size: 8rem;
    color: var(--white);
    opacity: 0.8;
}

/* Large Logo for About Section */
.logo-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.logo-main-large {
    position: relative;
    display: inline-block;
}

.logo-shah-large {
    display: inline-flex;
    align-items: baseline;
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.02em;
    position: relative;
}

.logo-s-large,
.logo-h-large,
.logo-h2-large {
    color: var(--primary-color);
}

.logo-a-wrapper-large {
    position: relative;
    display: inline-block;
    margin: 0 4px;
}

.logo-a-text-large {
    position: relative;
    z-index: 3;
    color: var(--primary-color);
}

.logo-a-arrow-dark-large,
.logo-a-arrow-light-large {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid;
    z-index: 1;
}

.logo-a-arrow-dark-large {
    border-bottom-color: var(--primary-color);
    top: -4px;
    left: 48%;
}

.logo-a-arrow-light-large {
    border-bottom-color: var(--secondary-color);
    top: 0px;
    left: 52%;
    z-index: 2;
}

.logo-flower-large {
    position: absolute;
    top: -50px;
    right: 8px;
    width: 70px;
    height: 50px;
    z-index: 10;
}

.logo-flower-left-large,
.logo-flower-right-large {
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 50% 0 50% 50%;
    transform-origin: center;
}

.logo-flower-left-large {
    left: 0;
    background: var(--primary-color);
    transform: rotate(-35deg);
    clip-path: polygon(50% 0%, 0% 100%, 50% 50%);
}

.logo-flower-right-large {
    right: 0;
    background: var(--secondary-color);
    transform: rotate(35deg);
    clip-path: polygon(50% 0%, 100% 100%, 50% 50%);
}

.logo-underline-large {
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    margin-top: -8px;
    border-radius: 3px;
    transform: scaleX(1.1);
    transform-origin: center;
}

.logo-consultancy-large {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 8px;
    letter-spacing: 0.05em;
}

/* Services Section - New Design */
/* Services Section - New Design */
/* Services Section - New Design */
.services-new {
    background: #912a2a;
    padding: 5rem 0;
    margin-top: 3rem;
}

.services-new-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .services-new-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .services-new-container {
        padding: 0 2rem;
    }
}

.services-new-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .services-new-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.services-new-header-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.services-new-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.services-logo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    display: block;
}

.services-logo-arrows {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
}

.services-logo-text {
    font-size: 0.875rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.services-new-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .services-new-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .services-new-title {
        font-size: 3rem;
    }
}

.services-new-header-right {
    display: flex;
    align-items: center;
}

.btn-view-all-services {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.btn-view-all-services:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.services-new-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-new-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-new-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card-new-design {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(139, 46, 46, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card-new-design:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 46, 46, 0.15);
    border-color: var(--primary-color);
}

.service-card-featured {
    background: linear-gradient(135deg, var(--white) 0%, #FFFCFC 100%);
    border-color: var(--primary-color);
    border-width: 2px;
}

.service-image-wrapper-new {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-new-design:hover .service-image-new {
    transform: scale(1.05);
}

.service-card-content-new {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.service-card-featured .service-card-content-new {
    order: -1;
}

.service-card-title-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1.3;
}

.service-card-featured .service-card-title-new {
    color: var(--text-color);
}

.service-card-description-new {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

.service-card-featured .service-card-description-new {
    color: var(--text-light);
}

.service-learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: auto;
}

.service-card-featured .service-learn-more {
    color: var(--primary-color);
}

.service-learn-more:hover {
    gap: 0.5rem;
    transform: translateX(5px);
}

.service-learn-more::after {
    content: '→';
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.service-learn-more:hover::after {
    transform: translateX(3px);
}

/* Old Services Section (keeping for reference) */
.services {
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.service-features li {
    color: var(--text-color);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Features/Stats Section */
.features-stats {
    background: var(--white);
    padding: 4rem 0;
    width: 100%;
}

.features-container {
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem 1rem;
    max-width: 100%;
}

@media (min-width: 640px) {
    .features-container {
        padding: 2.5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .features-container {
        padding: 4rem 2rem;
        max-width: 100%;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .features-grid {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 3rem;
        padding: 0 2rem;
    }
}

@media (min-width: 1280px) {
    .features-grid {
        padding: 0 4rem;
    }
}

.features-main-stat {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .features-main-stat {
        grid-column: span 4;
    }
}

.main-stat-wrapper {
    padding-right: 0;
}

@media (min-width: 1024px) {
    .main-stat-wrapper {
        padding-right: 1.5rem;
    }
}

@media (min-width: 1280px) {
    .main-stat-wrapper {
        padding-right: 3rem;
    }
}

.main-stat-number {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0;
}

@media (min-width: 640px) {
    .main-stat-number {
        font-size: 4.5rem;
    }
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--light-color);
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.75rem;
    line-height: 1;
    border-radius: 9999px;
    padding: 0.125rem 0.5rem;
    margin-left: 0.25rem;
}

.stat-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: var(--primary-color);
}

.main-stat-description {
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 1rem;
}

@media (min-width: 640px) {
    .main-stat-description {
        margin-top: 0.75rem;
        font-size: 1.125rem;
    }
}

.features-stats-grid {
    position: relative;
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .features-stats-grid {
        grid-column: span 8;
        position: relative;
    }

    .features-stats-grid::before {
        content: '';
        position: absolute;
        top: 0;
        left: -3rem;
        width: 1px;
        height: 100%;
        background: var(--light-color);
    }
}

.features-divider {
    display: none;
}

@media (min-width: 1024px) {
    .features-divider {
        display: block;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 2rem;
    }
}

.stat-label {
    margin-top: 0.25rem;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 1rem;
    }
}

/* Why Choose Us */
/* Why Choose Us */
/* Why Choose Us */
.why-choose {
    background: linear-gradient(to bottom, rgba(139, 46, 46, 0.05), var(--white));
    padding: 5rem 0;
    margin-top: 3rem;
}

.why-choose-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .why-choose-container-new {
        padding: 0 2rem;
    }
}

.why-choose-title-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
    width: 100%;
}

@media (min-width: 768px) {
    .why-choose-title-new {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .why-choose-title-new {
        font-size: 3.5rem;
    }
}

.title-underline {
    position: relative;
    display: inline-block;
}

.title-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.why-choose-content-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

@media (min-width: 1024px) {
    .why-choose-content-new {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

.why-choose-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    height: 100%;
    align-items: center;
}

.benefit-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    text-align: center;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 46, 46, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    flex-shrink: 0;
    margin: 0 auto;
}

.benefit-icon-1 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.benefit-icon-2 {
    background: linear-gradient(135deg, #8B2E2E, #A0522D);
}

.benefit-icon-3 {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.benefit-icon-4 {
    background: linear-gradient(135deg, #A0522D, #CD853F);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1.3;
    text-align: center;
}

@media (min-width: 1024px) {
    .benefit-title {
        font-size: 1.5rem;
    }
}

.benefit-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

.why-choose-image-section-new {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.why-choose-single-image-wrapper {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(139, 46, 46, 0.2);
    height: 100%;
    min-height: 600px;
    transition: transform 0.3s ease;
}

.why-choose-single-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 46, 46, 0.3);
}

.why-choose-single-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.why-choose-single-image-wrapper:hover .why-choose-single-image {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .why-choose-single-image-wrapper {
        min-height: 650px;
    }
}

@media (min-width: 1024px) {
    .why-choose-single-image-wrapper {
        min-height: 700px;
    }
}

/* Blog Section */
.blog-section {
    background: var(--primary-color);
    padding: 5rem 0;
    margin-top: 3rem;
}

.blog-container {
    max-width: 85rem;
    margin: 0 auto;
    padding: 2.5rem 1rem;
}

@media (min-width: 640px) {
    .blog-container {
        padding: 2.5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .blog-container {
        padding: 4rem 2rem;
    }
}

.blog-header-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .blog-header-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.blog-header-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-logo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: block;
}

.blog-logo-text {
    font-size: 0.875rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.blog-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .blog-main-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .blog-main-title {
        font-size: 3rem;
    }
}

.blog-header-right {
    display: flex;
    align-items: center;
}

.btn-view-all-blogs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-view-all-blogs:hover {
    background: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-arrow {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-view-all-blogs:hover .btn-arrow {
    transform: translateX(3px);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card-new {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.blog-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.blog-image-wrapper-new {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 1024px) {
    .blog-image-wrapper-new {
        height: 280px;
    }
}

.blog-image-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.3s ease;
}

.blog-card-new:hover .blog-image-new {
    transform: scale(1.05);
    filter: grayscale(80%);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
}

.blog-category-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--secondary-color);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.blog-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1024px) {
    .blog-card-title {
        font-size: 1.25rem;
    }
}

.blog-card-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.blog-read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    width: fit-content;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.blog-read-more-link:hover {
    color: #ffffff;
    gap: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.link-arrow {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.blog-read-more-link:hover .link-arrow {
    transform: translateX(3px);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--light-color);
    padding: 5rem 0;
    margin-top: 3rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .testimonials-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .testimonials-container {
        padding: 0 2rem;
    }
}

.testimonials-header {
    margin-bottom: 3rem;
}

.testimonials-header-left {
    max-width: 600px;
}

.testimonials-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.testimonials-logo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: block;
}

.testimonials-logo-text {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.testimonials-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .testimonials-main-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .testimonials-main-title {
        font-size: 3rem;
    }
}

.testimonials-intro {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
}

.btn-all-testimonials {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-all-testimonials:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 46, 46, 0.3);
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .testimonials-content {
        grid-template-columns: 1fr 1.5fr;
        gap: 2rem;
    }
}

.testimonials-rating-card {
    background: var(--primary-color);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.rating-card-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: repeating-linear-gradient(45deg,
            rgba(160, 82, 45, 0.3),
            rgba(160, 82, 45, 0.3) 10px,
            rgba(139, 46, 46, 0.2) 10px,
            rgba(139, 46, 46, 0.2) 20px);
}

.rating-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.overall-rating {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin: 2rem 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.rating-stars i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.review-count {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.5rem 0;
}

.rating-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 2rem 0;
    line-height: 1.5;
}

.client-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -10px;
    margin-top: auto;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--white);
    object-fit: cover;
    margin-left: -15px;
}

.client-avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: 3px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-left: -15px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--light-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.testimonial-navigation {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: auto;
}

.nav-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.nav-prev {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.nav-prev:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(-3px);
}

.nav-next {
    background: var(--primary-color);
    color: var(--white);
}

.nav-next:hover {
    background: var(--dark-color);
    transform: translateX(3px);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
}

.testimonial-stars i {
    color: var(--secondary-color);
    font-size: 1.125rem;
}

.testimonial-rating-number {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.testimonial-author {
    margin-bottom: 1.5rem;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.25rem 0;
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-5px);
}

.feature-item:hover i,
.feature-item:hover h4,
.feature-item:hover p {
    color: var(--white);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-item h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-item p {
    color: var(--text-light);
    transition: all 0.3s ease;
}

/* Contact Section */
/* Contact Section - Simple Design */
.contact-simple {
    background: var(--white);
    padding: 4rem 0;
    margin-top: 3rem;
}

.contact-simple-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .contact-simple-container {
        padding: 0 2rem;
    }
}

.contact-simple-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-simple-content {
        flex-direction: row;
        align-items: center;
    }
}

.contact-simple-text {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .contact-simple-text {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .contact-simple-text {
        font-size: 3rem;
    }
}

.btn-contact-us {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(139, 46, 46, 0.2);
    border: 2px solid var(--primary-color);
}

.btn-contact-us:hover {
    background: var(--dark-color);
    color: var(--white);
    border-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 46, 46, 0.4);
}

.contact {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(139,46,46,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-header {
    margin-bottom: 1rem;
}

.contact-info-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-info-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 46, 46, 0.15);
    border-color: var(--primary-color);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    min-height: 2.5rem;
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(139, 46, 46, 0.1);
}

.contact-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.contact-time {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(139, 46, 46, 0.1);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 46, 46, 0.1);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(139, 46, 46, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
        max-width: 160px;
    }

    .image-placeholder {
        height: 400px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(139, 46, 46, 0.1);
        padding: 2rem 0;
    }

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

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

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

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

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card,
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .logo-image {
        height: 35px;
        max-width: 140px;
    }

    .image-placeholder {
        height: 350px;
    }

    .footer-logo-image {
        height: 50px;
        max-width: 200px;
    }
}

/* Personal Profile Page Styles */
/* Profile Hero Section */
.profile-hero {
    background: linear-gradient(135deg, rgba(139, 46, 46, 0.05) 0%, rgba(160, 82, 45, 0.05) 100%);
    border-bottom: 1px solid rgba(139, 46, 46, 0.1);
}

.hero-profile-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-hero-image {
    flex-shrink: 0;
}

.image-frame {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
}

.hero-profile-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(139, 46, 46, 0.3);
}

.image-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(139, 46, 46, 0.3);
    border: 4px solid var(--white);
}

.profile-hero-content {
    flex: 1;
}

.profile-hero-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.profile-hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 500;
}

.profile-hero-company {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.profile-quick-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(139, 46, 46, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(139, 46, 46, 0.15);
}

.quick-info-item i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    border-radius: 12px;
    font-size: 1.2rem;
}

.quick-info-item div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.quick-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.quick-value {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
}

.personal-profile {
    background: var(--light-color);
    min-height: 100vh;
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.profile-section {
    width: 100%;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Wide Section Styles */
.wide-section {
    margin: 0 -20px;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(139, 46, 46, 0.08) 0%, rgba(160, 82, 45, 0.08) 100%);
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.wide-section-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: start;
}

.wide-section-left,
.wide-section-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wide-section-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    border-radius: 15px;
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(139, 46, 46, 0.2);
}

.wide-section-left h2,
.wide-section-right h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.wide-section-divider {
    width: 3px;
    background: var(--gradient);
    border-radius: 2px;
    margin: 0 20px;
    align-self: stretch;
}

.potential-text-wide {
    font-size: 1.4rem;
    color: var(--text-color);
    line-height: 1.8;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
}

.potential-text-wide i {
    color: var(--accent-color);
    font-size: 1.6rem;
}

.business-info-wide {
    width: 100%;
}

.business-name-wide {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 700;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
}

.services-heading-wide {
    color: var(--text-color);
    font-size: 1.3rem;
    margin: 0 0 25px 0;
    font-weight: 600;
}

.services-grid-wide {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-badge-wide {
    padding: 20px 25px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 3px 10px rgba(139, 46, 46, 0.1);
}

.service-badge-wide:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(139, 46, 46, 0.2);
}

.service-badge-wide i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.profile-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-header {
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, rgba(139, 46, 46, 0.05) 0%, rgba(160, 82, 45, 0.05) 100%);
    border-bottom: 2px solid rgba(139, 46, 46, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-body {
    padding: 30px;
    flex: 1;
}

.profile-card h2 {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: var(--gradient);
    border-radius: 12px;
    color: var(--white);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.achievement-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achievement-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(139, 46, 46, 0.15);
}

.achievement-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    border-radius: 12px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.achievement-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.achievement-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.experience-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--light-color);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(139, 46, 46, 0.15);
}

.experience-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    border-radius: 12px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.experience-text h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.experience-text p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.potential-text {
    font-size: 1.3rem;
    color: var(--primary-color);
    line-height: 1.8;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(139, 46, 46, 0.08) 0%, rgba(160, 82, 45, 0.08) 100%);
    border-radius: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.potential-text i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.business-name {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(139, 46, 46, 0.1) 0%, rgba(160, 82, 45, 0.1) 100%);
    border-radius: 12px;
}

.services-heading {
    color: var(--text-color);
    font-size: 1.3rem;
    margin: 25px 0 20px 0;
    font-weight: 600;
}

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

.service-badge {
    padding: 18px 20px;
    background: var(--light-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    transition: transform 0.3s ease, background 0.3s ease;
    border: 2px solid transparent;
}

.service-badge:hover {
    transform: translateY(-3px);
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(139, 46, 46, 0.15);
}

.service-badge i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Combined Card Styles */
.combined-card {
    width: 100%;
}

.card-icons-combined {
    display: flex;
    gap: 15px;
    align-items: center;
}

.combined-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.combined-section {
    flex: 1;
}

.combined-section-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.combined-section-title i {
    font-size: 1.3rem;
}

.combined-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 10px 0;
}

.potential-text-combined {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(139, 46, 46, 0.05) 0%, rgba(160, 82, 45, 0.05) 100%);
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
}

.potential-text-combined i {
    color: var(--accent-color);
    font-size: 1.4rem;
}

/* Business Profile Styles */
.service-type {
    text-align: center;
    padding: 30px;
}

.service-type i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-type h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-type p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.usp-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.usp-list li {
    padding: 20px;
    background: var(--light-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.usp-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(139, 46, 46, 0.15);
}

.usp-list li i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.growth-display {
    text-align: center;
    padding: 40px 20px;
}

.growth-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.growth-text {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 500;
    margin: 0;
}

.values-display {
    text-align: center;
    padding: 30px 20px;
}

.values-display i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.values-display h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.values-display p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.achievement-item-business {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-item-business:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 46, 46, 0.15);
}

.achievement-icon-business {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    border-radius: 15px;
    font-size: 2rem;
    flex-shrink: 0;
}

.achievement-content-business h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.achievement-content-business p {
    color: var(--text-color);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.future-content {
    text-align: center;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.future-content i {
    font-size: 2rem;
    color: var(--primary-color);
}

.future-content p {
    font-size: 1.3rem;
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
    line-height: 1.7;
}

.expansion-content {
    text-align: center;
    padding: 40px 20px;
}

.expansion-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.expansion-text {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 500;
    margin: 0;
}

.performance-display {
    text-align: center;
    padding: 40px 20px;
}

.performance-display i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.performance-display h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.performance-display p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Styles for Business Profile */
@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .growth-number,
    .expansion-number {
        font-size: 3rem;
    }

    .performance-display h3 {
        font-size: 2rem;
    }
}

.passion-card {
    background: linear-gradient(135deg, rgba(139, 46, 46, 0.08) 0%, rgba(160, 82, 45, 0.08) 100%);
    border: 2px solid var(--primary-color);
}

.passion-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
}

.passion-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.passion-text {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.8;
    margin: 0;
}

.vision-card {
    background: linear-gradient(135deg, rgba(139, 46, 46, 0.05) 0%, rgba(160, 82, 45, 0.05) 100%);
}

.vision-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vision-list li {
    padding: 20px 25px;
    background: var(--white);
    border-radius: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 3px 10px rgba(139, 46, 46, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.vision-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(139, 46, 46, 0.2);
}

.vision-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.vision-list li span {
    color: var(--text-color);
    font-weight: 500;
}

.organisations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.org-item {
    background: var(--light-color);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.org-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
    background: var(--white);
}

.org-icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 15px;
    margin-bottom: 5px;
}

.org-item i {
    font-size: 2rem;
    color: var(--white);
}

.org-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.back-button-wrapper {
    text-align: center;
    margin-top: 50px;
}

.nav-menu .active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Styles for Personal Profile */
@media (max-width: 968px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .organisations-grid {
        grid-template-columns: 1fr;
    }

    .wide-section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wide-section-divider {
        width: 100%;
        height: 3px;
        margin: 0;
    }

    .services-grid-wide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-profile-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .image-frame {
        width: 220px;
        height: 220px;
    }

    .profile-hero-title {
        font-size: 2.2rem;
    }

    .profile-hero-subtitle {
        font-size: 1.2rem;
    }

    .profile-quick-info {
        align-items: center;
    }

    .quick-info-item {
        width: 100%;
        max-width: 400px;
    }

    .card-header,
    .card-body {
        padding: 20px;
    }

    .profile-card h2 {
        font-size: 1.4rem;
    }

    .profile-image {
        width: 200px;
        height: 250px;
    }

    .profile-info-card,
    .profile-card {
        padding: 25px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .organisations-grid {
        grid-template-columns: 1fr;
    }

    .profile-card h2 {
        font-size: 1.5rem;
    }

    .wide-section {
        padding: 40px 15px;
    }

    .wide-section-content {
        gap: 30px;
    }

    .wide-section-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .wide-section-left h2,
    .wide-section-right h2 {
        font-size: 1.5rem;
    }

    .potential-text-wide {
        font-size: 1.2rem;
    }

    .business-name-wide {
        font-size: 1.8rem;
        padding: 15px;
    }

    .services-heading-wide {
        font-size: 1.1rem;
    }

    .service-badge-wide {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .image-frame {
        width: 200px;
        height: 200px;
    }

    .profile-hero-title {
        font-size: 1.8rem;
    }

    .card-header,
    .card-body {
        padding: 15px;
    }

    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .achievement-icon,
    .experience-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .org-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .org-item i {
        font-size: 1.5rem;
    }
}

/* About Hero Section */
.about-hero {
    margin-top: 80px;
    width: 100%;
}

.about-hero-top {
    background: #F8F8F8;
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.about-hero-dots-top,
.about-hero-dots-bottom {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0.15;
    background-image: radial-gradient(circle, #8B2E2E 2px, transparent 2px);
    background-size: 20px 20px;
}

.about-hero-dots-top {
    top: 20px;
    right: 20px;
}

.about-hero-dots-bottom {
    bottom: 20px;
    left: 20px;
}

.about-hero-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.about-breadcrumb {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.about-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--text-light);
}

.breadcrumb-current {
    color: var(--text-color);
    font-weight: 500;
}

.about-hero-bottom {
    background: var(--dark-color);
    padding: 1.5rem 0;
    overflow-x: auto;
}

.about-hero-services {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    white-space: nowrap;
}

.service-term {
    color: #E0E0E0;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.service-separator {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0.25rem;
}

/* Responsive Design for About Hero */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-top {
        padding: 3rem 0 2rem;
    }

    .about-hero-dots-top,
    .about-hero-dots-bottom {
        width: 150px;
        height: 150px;
        background-size: 15px 15px;
    }

    .service-term {
        font-size: 0.9rem;
    }

    .about-hero-services {
        justify-content: flex-start;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .about-breadcrumb {
        font-size: 0.9rem;
    }

    .service-term {
        font-size: 0.85rem;
    }

    .service-separator {
        font-size: 1rem;
    }
}

/* Vision & Mission Section */
.vision-mission {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F8F8F8 0%, var(--light-color) 100%);
    position: relative;
    overflow: hidden;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(139, 46, 46, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(160, 82, 45, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.vision-mission-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(139, 46, 46, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.vision-mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 46, 46, 0.2);
    border-color: var(--primary-color);
}

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

.vm-icon-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 8px 25px rgba(139, 46, 46, 0.3);
    transition: all 0.4s ease;
}

.vision-mission-card:hover .vm-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(139, 46, 46, 0.4);
}

.vm-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.vision-mission-card:hover .vm-icon-wrapper::after {
    opacity: 0.3;
}

.vm-icon {
    font-size: 3rem;
    color: var(--white);
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.vm-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.vm-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.vm-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
    text-align: center;
    margin: 0;
}

/* Responsive Design for Vision & Mission */
@media (max-width: 768px) {
    .vision-mission {
        padding: 3rem 0;
    }

    .vision-mission-grid {
        gap: 2rem;
    }

    .vision-mission-card {
        padding: 2.5rem 2rem;
    }

    .vm-icon-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }

    .vm-icon {
        font-size: 2.5rem;
    }

    .vm-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .vm-text {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .vision-mission-card {
        padding: 2rem 1.5rem;
    }

    .vm-icon-wrapper {
        width: 90px;
        height: 90px;
    }

    .vm-icon {
        font-size: 2.25rem;
    }

    .vm-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .vm-text {
        font-size: 0.95rem;
    }
}

/* Services New Page Design */
.services-new-page {
    padding: 5rem 0;
    background: var(--white);
}

.services-new-page-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.services-new-page-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-page-icon {
    color: var(--primary-color);
    font-size: 1rem;
}

.services-page-label-text {
    color: var(--primary-color);
}

.services-new-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.services-new-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-new-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-new-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card-new {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #E5E5E5;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 46, 46, 0.15);
    border-color: var(--primary-color);
}

.service-card-featured-new {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.service-card-image-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.service-card-new:hover .service-card-image {
    filter: grayscale(70%);
}

.service-card-featured-new .service-card-image-wrapper {
    display: none;
}

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

.service-card-featured-new .service-card-title-new {
    color: var(--white);
}

.service-card-description-new {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.service-card-featured-new .service-card-description-new {
    color: rgba(255, 255, 255, 0.95);
}

.service-learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-card-featured-new .service-learn-more {
    color: var(--white);
}

.service-learn-more:hover {
    gap: 0.75rem;
    color: var(--dark-color);
}

.service-card-featured-new .service-learn-more:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design for Services New Page */
@media (max-width: 768px) {
    .services-new-page {
        padding: 3rem 0;
    }

    .services-new-page-title {
        font-size: 2rem;
    }

    .services-new-page-grid {
        gap: 1.5rem;
    }

    .service-card-new {
        padding: 1.5rem;
    }

    .service-card-image-wrapper {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .services-new-page-title {
        font-size: 1.75rem;
    }

    .service-card-title-new {
        font-size: 1.25rem;
    }

    .service-card-description-new {
        font-size: 0.95rem;
    }
}

/* Service Detail Page */
.service-detail-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, #F8F8F8 0%, var(--light-color) 100%);
    margin-top: 80px;
}

.blog-header-simple {
    padding: 6rem 0 0;
    margin-top: 80px;
    background: #fff;
}

.blog-header-simple h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-top: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

@media (max-width: 768px) {
    .blog-header-simple {
        padding: 5rem 0 0;
    }

    .blog-header-simple h1 {
        font-size: 2rem;
    }
}

.service-detail-content {
    padding: 2rem 0 5rem;
}


.service-breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--text-light);
}

.breadcrumb-current {
    color: var(--text-color);
    font-weight: 500;
}

.service-detail-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.service-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1240px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .service-detail-wrapper {
        grid-template-columns: 280px 1fr;
        gap: 2.5rem;
    }

    .service-detail-wrapper.single-column {
        grid-template-columns: 1fr;
        max-width: 900px;
        margin: 0 auto;
    }
}

.service-detail-main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-detail-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 46, 46, 0.1);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-description h2,
.service-benefits h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
}

.service-detail-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
    text-align: justify;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    border-bottom: 1px solid #E5E5E5;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.service-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.required-documents {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
}

.required-documents h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.required-documents h3 i {
    font-size: 1.25rem;
}

.documents-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.documents-list li {
    padding: 0.875rem 0 0.875rem 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    border-bottom: 1px solid rgba(139, 46, 46, 0.1);
}

.documents-list li:last-child {
    border-bottom: none;
}

.documents-list li::before {
    content: '\f15c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    position: absolute;
    left: 0;
    top: 0.875rem;
    color: var(--primary-color);
    font-size: 1rem;
}

.service-cta {
    background: var(--gradient);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
}

.service-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: var(--white);
}

.service-cta p {
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
    opacity: 0.95;
}

.btn-contact-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-contact-service:hover {
    background: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Service Detail */
@media (max-width: 768px) {
    .service-detail-hero {
        padding: 5rem 0 2rem;
    }

    .service-detail-title {
        font-size: 2.25rem;
    }

    .service-detail-content {
        padding: 3rem 0;
    }

    .service-detail-wrapper {
        gap: 1.5rem;
    }

    .service-detail-description h2,
    .service-benefits h2 {
        font-size: 1.5rem;
    }

    .required-documents {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-detail-title {
        font-size: 1.75rem;
    }

    .service-detail-description p {
        font-size: 1rem;
    }

    .benefits-list li {
        font-size: 1rem;
        padding-left: 2rem;
    }

    .documents-list li {
        font-size: 0.95rem;
        padding-left: 1.75rem;
    }
}

/* Blog Page New Design */
.blog-hero {
    margin-top: 80px;
}

.blogs-new {
    padding: 5rem 0;
    background: var(--white);
}

.blogs-header {
    margin-bottom: 3rem;
}

.blogs-header-left {
    max-width: 800px;
}

.blogs-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blogs-label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient);
    display: inline-block;
}

.blogs-label-text {
    color: var(--primary-color);
}

.blogs-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 1rem 0;
}

.blogs-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-color);
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid #E5E5E5;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.blogs-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .blogs-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .blogs-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card-new {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(139, 46, 46, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #F0F0F0;
}

.blog-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 46, 46, 0.15);
    border-color: var(--primary-color);
}

.blog-image-new {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    background: var(--light-color);
}

.blog-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-new:hover .blog-image-new img {
    transform: scale(1.05);
}

.blog-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content-new {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta-new {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-date i,
.blog-read-time i {
    font-size: 0.85rem;
}

.blog-title-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 1rem 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card-new:hover .blog-title-new {
    color: var(--primary-color);
}

.blog-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
    text-align: justify;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.blog-read-more:hover {
    gap: 0.75rem;
    color: var(--dark-color);
}

.blog-read-more i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* Blog Card Hidden State for Filtering */
.blog-card-new.hidden {
    display: none;
}

/* Responsive Design for Blog Page */
@media (max-width: 768px) {
    .blogs-new {
        padding: 3rem 0;
    }

    .blogs-main-title {
        font-size: 2rem;
    }

    .blogs-intro {
        font-size: 1rem;
    }

    .blog-categories {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .category-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .blogs-grid-new {
        gap: 2rem;
    }

    .blog-image-new {
        height: 220px;
    }

    .blog-content-new {
        padding: 1.5rem;
    }

    .blog-title-new {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .blogs-main-title {
        font-size: 1.75rem;
    }

    .blog-meta-new {
        flex-direction: column;
        gap: 0.5rem;
    }

    .blog-excerpt {
        font-size: 0.95rem;
        text-align: justify;
    }
}

/* Contact Page New Design */
.contact-hero {
    margin-top: 80px;
}

.contact-new {
    padding: 5rem 0;
    background: var(--white);
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient);
    display: inline-block;
}

.contact-label-text {
    color: var(--primary-color);
}

.contact-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 1rem 0;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.contact-content-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .contact-content-new {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
    }
}

/* Contact Info Cards */
.contact-info-section-new {
    display: flex;
    flex-direction: column;
}

.contact-info-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-info-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card-new {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(139, 46, 46, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    text-align: center;
}

.contact-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 46, 46, 0.15);
    border-color: var(--primary-color);
}

.contact-card-icon-new {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-card-new:hover .contact-card-icon-new {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
}

.contact-card-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.625rem 1.25rem;
    border-radius: 25px;
    background: rgba(139, 46, 46, 0.1);
}

.contact-card-link:hover {
    background: var(--primary-color);
    color: var(--white);
    gap: 0.75rem;
}

.contact-card-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.contact-card-link:hover i {
    transform: translateX(3px);
}

.contact-card-time {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.625rem 1.25rem;
    border-radius: 25px;
    background: rgba(139, 46, 46, 0.1);
}

/* Contact Form Section */
.contact-form-section-new {
    display: flex;
    flex-direction: column;
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
}

.contact-form-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-form-wrapper-new {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(139, 46, 46, 0.1);
    border: 1px solid #F0F0F0;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-field-group-new {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label-new {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-input-new,
.form-select-new,
.form-textarea-new {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background: var(--white);
    transition: all 0.3s ease;
}

.form-input-new:focus,
.form-select-new:focus,
.form-textarea-new:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 46, 46, 0.1);
}

.form-input-new::placeholder,
.form-textarea-new::placeholder {
    color: #999;
}

.form-textarea-new {
    resize: vertical;
    min-height: 140px;
    font-family: 'Poppins', sans-serif;
}

.form-select-new {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B2E2E' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 12px;
    padding-right: 3rem;
    cursor: pointer;
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(139, 46, 46, 0.3);
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 46, 46, 0.4);
    gap: 1rem;
}

.btn-contact-submit:active {
    transform: translateY(0);
}

.btn-contact-submit i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-contact-submit:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-new {
        padding: 3rem 0;
    }

    .contact-main-title {
        font-size: 2rem;
    }

    .contact-intro {
        font-size: 1rem;
    }

    .contact-header {
        margin-bottom: 3rem;
    }

    .contact-content-new {
        gap: 3rem;
    }

    .contact-form-wrapper-new {
        padding: 2rem 1.5rem;
    }

    .contact-form-title {
        font-size: 1.5rem;
    }

    .contact-card-new {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-main-title {
        font-size: 1.75rem;
    }

    .contact-form-wrapper-new {
        padding: 1.5rem 1rem;
    }

    .btn-contact-submit {
        width: 100%;
        padding: 0.875rem 2rem;
    }
}

/* Contact Page - New Design Based on Image */
.contact-quote-main {
    padding: 4rem 0;
    background: var(--white);
}

.contact-quote-header-main {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-quote-label-main {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.contact-quote-icon-main {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: bold;
}

.contact-quote-label-text-main {
    color: var(--text-light);
}

.contact-quote-title-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.contact-quote-content-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .contact-quote-content-main {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-quote-form-wrapper-main {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(139, 46, 46, 0.1);
}

.contact-quote-form-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-field-group-main {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label-main {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-input-main,
.form-select-main,
.form-textarea-main {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background: var(--white);
    transition: all 0.3s ease;
}

.form-input-main:focus,
.form-select-main:focus,
.form-textarea-main:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 46, 46, 0.1);
}

.form-input-main::placeholder,
.form-textarea-main::placeholder {
    color: #999;
}

.form-textarea-main {
    resize: vertical;
    min-height: 120px;
    font-family: 'Poppins', sans-serif;
}

.form-select-main {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B2E2E' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.btn-send-message-main {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-send-message-main:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 46, 46, 0.3);
}

.contact-quote-image-wrapper-main {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.contact-quote-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.image-sparkle-main {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 50%;
    opacity: 0.9;
    filter: blur(20px);
    animation: sparkle-pulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes sparkle-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

/* Contact Info Cards Section */
.contact-info-cards-section {
    padding: 4rem 0;
    background: #F8F9FA;
}

.contact-info-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-info-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-info-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 46, 46, 0.15);
}

.contact-info-card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.75rem 0;
}

.contact-info-card-text {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Map Section */
.contact-map-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.contact-map-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.contact-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%);
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 46, 46, 0.4);
    z-index: 10;
    animation: marker-bounce 2s ease-in-out infinite;
}

.map-marker-link {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.map-marker-link:hover {
    color: var(--white);
    transform: scale(1.1);
}

@keyframes marker-bounce {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-quote-main {
        padding: 3rem 0;
    }

    .contact-quote-title-main {
        font-size: 2rem;
    }

    .contact-quote-form-wrapper-main {
        padding: 2rem 1.5rem;
    }

    .contact-info-cards-section {
        padding: 3rem 0;
    }

    .contact-info-card {
        padding: 2rem 1.5rem;
    }

    .contact-quote-image-wrapper-main {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .contact-quote-title-main {
        font-size: 1.75rem;
    }

    .contact-quote-form-wrapper-main {
        padding: 1.5rem 1rem;
    }

    .contact-info-card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .contact-map-wrapper {
        height: 350px;
    }
}

/* Meet Our Expert Team Section */
.expert-team {
    padding: 5rem 0 3rem;
    background: var(--white);
    overflow: hidden;
}

.team-header-wrapper {
    margin-bottom: 3rem;
}

.team-header {
    text-align: center;
}

.team-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient);
    display: inline-block;
}

.team-label-text {
    color: var(--primary-color);
}

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

/* Team Slider */
.team-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.team-slider {
    display: flex;
    gap: 2rem;
    animation: slideLeft 40s linear infinite;
    width: fit-content;
}

.team-slider:hover {
    animation-play-state: paused;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #E5E5E5;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    width: 280px;
    min-width: 280px;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 46, 46, 0.15);
    border-color: var(--primary-color);
}

.team-photo-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: var(--light-color);
}

.team-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

.team-photo-grayscale {
    filter: grayscale(100%);
}


.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-icon:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.1);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
    background: var(--white);
}


.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
}

.team-role {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-light);
}

/* Responsive Design for Expert Team */
@media (max-width: 768px) {
    .expert-team {
        padding: 3rem 0 2rem;
    }

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

    .team-card {
        width: 250px;
        min-width: 250px;
    }

    .team-slider {
        gap: 1.5rem;
        animation-duration: 35s;
    }
}

@media (max-width: 480px) {
    .expert-team {
        padding: 2.5rem 0 1.5rem;
    }

    .team-title {
        font-size: 1.75rem;
    }

    .team-label {
        font-size: 0.85rem;
    }

    .team-card {
        width: 220px;
        min-width: 220px;
    }

    .team-slider {
        gap: 1rem;
        animation-duration: 30s;
    }

    .team-name {
        font-size: 1.1rem;
    }

    .team-role {
        font-size: 0.9rem;
    }
}

/* Contact Quote Section */
.contact-quote-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.contact-quote-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.contact-quote-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-quote-icon {
    color: var(--primary-color);
    font-size: 1rem;
}

.contact-quote-label-text {
    color: var(--primary-color);
}

.contact-quote-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.contact-quote-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .contact-quote-content {
        grid-template-columns: 1.5fr 1fr;
        gap: 4rem;
    }
}

.contact-quote-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(139, 46, 46, 0.1);
}

.contact-quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background: var(--white);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 46, 46, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-light);
    font-size: 0.875rem;
}

.btn-send-message {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.btn-send-message:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 46, 46, 0.3);
}

.btn-send-message:active {
    transform: translateY(0);
}

.contact-quote-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    box-shadow: 0 4px 20px rgba(139, 46, 46, 0.1);
}

.contact-quote-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.contact-quote-image-wrapper:hover .contact-quote-image {
    filter: grayscale(80%);
}

.image-sparkle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, rgba(255, 215, 0, 0) 70%);
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Responsive Design for Contact Quote Section */
@media (max-width: 768px) {
    .contact-quote-section {
        padding: 3rem 0;
    }

    .contact-quote-title {
        font-size: 2rem;
    }

    .contact-quote-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-quote-image-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .contact-quote-title {
        font-size: 1.75rem;
    }

    .contact-quote-form-wrapper {
        padding: 1.5rem 1rem;
    }

    .contact-quote-form {
        gap: 1.25rem;
    }

    .btn-send-message {
        width: 100%;
        padding: 0.875rem 2rem;
    }
}

/* Refined Service Detail Elements */

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 !important;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.benefits-list li {
    background: rgba(139, 46, 46, 0.05);
    padding: 15px 20px 15px 45px;
    border-radius: 10px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-color);
}

.benefits-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.documents-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 !important;
}

.documents-list li {
    padding: 12px 15px 12px 40px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    position: relative;
    font-size: 0.9rem;
    color: var(--text-light);
}

.documents-list li::before {
    content: '\f15b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    position: absolute;
    left: 10px;
    color: var(--secondary-color);
}

.documents-list li:last-child {
    border-bottom: none;
}

/* Process Steps */
.service-process {
    margin: 50px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(139, 46, 46, 0.3);
}

.step-item h4 {
    color: var(--text-color);
    margin-bottom: 10px;
}

.step-item p {
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .step-item:not(:last-child)::after {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 30px;
        right: -15px;
        color: rgba(139, 46, 46, 0.2);
        font-size: 1.5rem;
    }
}

.required-documents {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 46, 46, 0.1);
}

.required-documents h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Detail Page Layout & Sidebar Refinement */
.service-detail-hero {
    background: linear-gradient(rgba(139, 46, 46, 0.8), rgba(92, 26, 26, 0.9)), url('images/header.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0 40px;
    /* Thinner banner */
    color: var(--white);
    text-align: left;
}

/* Unifying Detail Page Layout with existing base styles */
.service-detail-wrapper {
    display: grid;
    grid-template-columns: 3.5fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.service-detail-wrapper.single-column {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-main {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    max-width: 1300px;
    margin: 0 auto;
}

.service-detail-main-title,
.blog-detail-main-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.blog-detail-top-section {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.blog-info-content-side {
    flex: 2.5;
}

.service-detail-image {
    flex: 1.2;
    height: auto;
    max-height: 600px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sidebar Styles Refinement */
.service-detail-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-cta,
.recent-blogs-sidebar,
.required-documents {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 46, 46, 0.05);
    transition: transform 0.3s ease;
}

.service-cta:hover,
.recent-blogs-sidebar:hover,
.required-documents:hover {
    transform: translateY(-5px);
}

.required-documents {
    border-left: 5px solid var(--primary-color);
}

.service-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--white) 0%, #fffcfc 100%);
}

.btn-contact-service {
    display: inline-block;
    width: fit-content;
    margin-top: 20px;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-contact-service:hover {
    background: var(--dark-color);
    box-shadow: 0 5px 15px rgba(139, 46, 46, 0.3);
}

/* Recent Blogs Sidebar List */
.recent-blogs-sidebar h3 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    color: var(--text-color);
}

.recent-blog-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    margin-bottom: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.recent-blog-thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-blog-info h4 {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-color);
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-blog-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Blog specific Meta detail */
.blog-meta-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.blog-detail-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-top: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.blog-category-badge-detail {
    background: rgba(139, 46, 46, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
}

.back-to-blogs {
    margin-bottom: 20px;
}

.back-to-blogs a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.back-to-blogs a:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .blog-detail-top-section {
        flex-direction: column;
    }

    .service-detail-image {
        width: 100%;
        margin-bottom: 25px;
        position: static;
    }
}

@media (max-width: 1024px) {
    .service-detail-wrapper.single-column {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .service-detail-sidebar {
        position: static;
    }
}