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

:root {
    --primary-color: #263652;
    /* Bapasitaram Blue */
    --secondary-color: #EB5D08;
    /* Bapasitaram Orange */
    --accent-color: #F38140;
    /* Light Orange */
    --dark-color: #172439;
    /* Dark Blue */
    --light-color: #F2F5F9;
    /* Very Light Blue Tint */
    --text-color: #1A212E;
    /* Dark Blue-Black */
    --text-light: #5B6B8A;
    /* Medium Blue-Gray */
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #263652 0%, #172439 100%);
    --shadow: 0 10px 30px rgba(38, 54, 82, 0.15);
    --shadow-hover: 0 15px 40px rgba(38, 54, 82, 0.25);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

/* Scroll Reveal Animations */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Delay Utilities */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-500 {
    transition-delay: 500ms;
}

.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(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(128, 0, 128, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(128, 0, 128, 0.05);
}

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

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

.logo-image {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.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;
}

/* ============================================
   Section Spacing
   ============================================ */
.about,
.why-choose,
.contact {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* ============================================
   Hero Modern Section
   ============================================ */
.hero-modern {
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 80px;
    background-image: linear-gradient(rgba(248, 244, 255, 0.4), rgba(248, 244, 255, 0.6)), url('images/herobg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-color);
    min-height: 85vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-bg-polygon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background-image: url('https://preline.co/assets/svg/examples/polygon-bg-element.svg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.hero-announcement {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.announcement-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.4rem 0.4rem 1rem;
    background: var(--white);
    border: 1px solid rgba(128, 0, 128, 0.1);
    border-radius: 50px;
    color: var(--text-color);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(128, 0, 128, 0.05);
}

.announcement-link:hover {
    border-color: var(--primary-color);
}

.announcement-pill {
    padding: 0.35rem 0.6rem;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pill-icon svg {
    width: 14px;
    height: 14px;
}

.hero-header {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(128, 0, 128, 0.2);
}

.btn-hero-primary svg {
    width: 16px;
    height: 16px;
    stroke: var(--white);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(128, 0, 128, 0.3);
}

.hero-badge-container {
    display: flex;
    align-items: center;
}

.hero-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border: 1px solid rgba(128, 0, 128, 0.1);
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-color);
    box-shadow: 0 4px 12px rgba(128, 0, 128, 0.05);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    padding: 4px;
    border-radius: 4px;
}

.badge-icon svg {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
}

.hero-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-value {
    color: var(--primary-color);
    font-weight: 700;
}

.footer-separator {
    color: rgba(128, 0, 128, 0.2);
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-color);
}

.footer-link svg {
    width: 16px;
    height: 16px;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        padding-top: 100px;
        min-height: auto;
    }

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

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

    .hero-footer {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-separator {
        display: none;
    }
}

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-hero-primary,
    .hero-brand-badge {
        width: 100%;
        justify-content: center;
    }
}



/* 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: 120px;
    padding-bottom: 5rem;
    position: relative;
    /* For absolute decor placement */
    overflow: hidden;
    /* Prevent SVG overflow */
}

.about-decor {
    position: absolute;
    top: 0;
    height: 100%;
    width: 25%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    filter: grayscale(1);
}

.about-decor-left {
    left: 0;
    border-right: 1px solid rgba(128, 0, 128, 0.05);
}

.about-decor-right {
    right: 0;
    border-left: 1px solid rgba(128, 0, 128, 0.05);
}

.about-decor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

/* Floating decor animation removed for side panel look */

.about .container {
    position: relative;
    z-index: 1;
}

/* Products Showcase Section — Full Screen */
.products {
    width: 100vw;
    min-height: 100vh;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #fdfbff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

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

/* Outer wrapper */
.product-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 0;
}

/* Stage clips the row on both sides */
.product-stage {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
}

/* Single horizontal row — JS translates it to center active card */
.product-track {
    display: flex;
    gap: 24px;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 10px 0;
}

/* Every card — blurred by default */
.product-item {
    flex-shrink: 0;
    width: 280px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    border: 3px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(3px) brightness(0.55);
    opacity: 0.7;
    cursor: pointer;
    transform: scale(0.92);
}

/* Only the selected card is fully clear */
.product-item.is-active {
    filter: none;
    opacity: 1;
    transform: scale(1.06);
    border-color: var(--primary-color);
    box-shadow:
        0 0 0 5px rgba(38, 54, 82, 0.13),
        0 20px 56px rgba(38, 54, 82, 0.22);
    cursor: default;
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.0);
    transition: transform 0.5s ease;
}

/* Counter e.g. 3 / 10 */
.product-counter {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.1em;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .product-item {
        width: 180px;
        height: 240px;
    }
}

/* Product Slider Bottom Navigation */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.slider-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(128, 0, 128, 0.12);
    transition: all 0.3s ease;
    outline: none;
    letter-spacing: 0.02em;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(128, 0, 128, 0.28);
    transform: translateY(-2px);
}

.slider-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Vision, Mission & Values */
.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(128, 0, 128, 0.3);
}

.btn-read-more:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(128, 0, 128, 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: 2rem auto 0;
    width: 100%;
    justify-items: center;
}

.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;
    object-position: center top;
    /* Focuses on the face/upper body */
    border-radius: 20px;
    transform: scale(1.15);
    /* Zoom in effect */
}

.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: #6a006a;
    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(128, 0, 128, 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(128, 0, 128, 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: center;
}

.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(128, 0, 128, 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;
        max-width: 1300px;
        /* Wider for 4 columns */
        margin: 0 auto;
    }
}

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

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

@media (min-width: 1200px) {
    .why-choose-benefits {
        grid-template-columns: repeat(4, 1fr);
    }
}

.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(128, 0, 128, 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, #800080, #4B0082);
}

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

.benefit-icon-4 {
    background: linear-gradient(135deg, #4B0082, #9B30FF);
}

.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(128, 0, 128, 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(128, 0, 128, 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;
    }
}

/* Why Choose Us */
/* Why Choose Us */
/* Why Choose Us */
/* Why Choose Path Design */
.why-choose-path {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.path-container {
    position: relative;
    padding: 6rem 0;
}

.thread-line-bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 120px;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.35;
    pointer-events: none;
}

.path-line {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 4;
    stroke-dasharray: 10, 10;
    animation: stitchFlow 30s infinite linear;
}

.path-glow {
    fill: var(--secondary-color);
    filter: blur(5px);
}

@keyframes stitchFlow {
    from {
        stroke-dashoffset: 200;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.path-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.path-step {
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.step-blob {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow:
        0 8px 32px 0 rgba(128, 0, 128, 0.1),
        inset 0 0 15px rgba(255, 255, 255, 0.9),
        inset 0 -5px 15px rgba(128, 0, 128, 0.05);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.step-blob::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 30%;
    height: 30%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 50%;
    pointer-events: none;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gradient);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(128, 0, 128, 0.2);
    border: 2px solid var(--white);
    z-index: 3;
}

.path-step:hover .step-blob {
    transform: translateY(-15px) scale(1.05);
    background: rgba(128, 0, 128, 0.1);
    border-color: var(--primary-color);
    box-shadow:
        0 20px 40px rgba(128, 0, 128, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.8);
}

.path-step:hover .step-content h4 {
    color: var(--primary-color);
}

.step-content h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

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

/* Responsive Path */
@media (max-width: 1024px) {
    .path-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }

    .thread-line-bg {
        display: none;
        /* Hide complex path on mobile grid */
    }
}

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


/* Dealer CTA Button */
.dealer-cta {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border: none;
    box-shadow: 0 10px 20px rgba(128, 0, 128, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    color: var(--white);
    text-decoration: none;
}

.dealer-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(128, 0, 128, 0.4);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.benefit-card:hover .benefit-icon {
    transform: rotate(10deg) scale(1.1);
    transition: transform 0.3s ease;
}

/* 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(128, 0, 128, 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(75, 0, 130, 0.3),
            rgba(75, 0, 130, 0.3) 10px,
            rgba(128, 0, 128, 0.2) 10px,
            rgba(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128,0,128,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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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 Redesign - Reverted to Dark Theme */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

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

.footer-section h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    text-align: justify;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-section ul li i {
    color: var(--accent-color);
    width: 20px;
}

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

.footer-logo-image {
    height: 70px;
    filter: invert(1) grayscale(1) brightness(10);
    mix-blend-mode: screen;
    transition: transform 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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




/* 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(128, 0, 128, 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(128, 0, 128, 0.05) 0%, rgba(75, 0, 130, 0.05) 100%);
    border-bottom: 1px solid rgba(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 0.08) 0%, rgba(75, 0, 130, 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(128, 0, 128, 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(128, 0, 128, 0.1);
}

.service-badge-wide:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(128, 0, 128, 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(128, 0, 128, 0.05) 0%, rgba(75, 0, 130, 0.05) 100%);
    border-bottom: 2px solid rgba(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 0.08) 0%, rgba(75, 0, 130, 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(128, 0, 128, 0.1) 0%, rgba(75, 0, 130, 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(128, 0, 128, 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(128, 0, 128, 0.05) 0%, rgba(75, 0, 130, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 0.08) 0%, rgba(75, 0, 130, 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(128, 0, 128, 0.05) 0%, rgba(75, 0, 130, 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(128, 0, 128, 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(128, 0, 128, 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, #800080 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(128, 0, 128, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(75, 0, 130, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 0.3);
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 0.8), rgba(75, 0, 130, 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(128, 0, 128, 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(128, 0, 128, 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(128, 0, 128, 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;
    }
}

/* ============================================
   Stats Section
   ============================================ */
.stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    min-width: 120px;
}

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

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

/* ============================================
   Vision, Mission & Values Section
   ============================================ */
.vision-mission-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    /* Watercolor texture effect */
    background-image:
        radial-gradient(circle at 10% 20%, rgba(128, 0, 128, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(155, 48, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(248, 244, 255, 0.8) 0%, transparent 100%);
}

.vmv-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    filter: url(#watercolor-filter) blur(40px);
    opacity: 0.4;
}

.vmv-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    /* Organic shape */
    animation: vmvWatercolor 25s infinite alternate ease-in-out;
}

.vmv-blob-1 {
    width: 600px;
    height: 600px;
    background: #800080;
    /* Logo Purple */
    top: -200px;
    left: -150px;
    opacity: 0.2;
    animation-duration: 30s;
}

.vmv-blob-2 {
    width: 700px;
    height: 700px;
    background: #8B2323;
    /* Card Red */
    bottom: -250px;
    right: -150px;
    opacity: 0.15;
    animation-duration: 35s;
    animation-delay: -7s;
}

.vmv-blob-3 {
    width: 500px;
    height: 500px;
    background: #2D5A47;
    /* Card Green */
    top: 20%;
    right: 10%;
    opacity: 0.1;
    animation-duration: 40s;
    animation-delay: -12s;
}

.vmv-blob-4 {
    width: 450px;
    height: 450px;
    background: #B35A2D;
    /* Card Brown */
    bottom: 20%;
    left: 10%;
    opacity: 0.1;
    animation-duration: 38s;
    animation-delay: -5s;
}

@keyframes vmvWatercolor {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    50% {
        transform: translate(100px, 50px) scale(1.2) rotate(15deg);
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
    }

    100% {
        transform: translate(-50px, 100px) scale(0.9) rotate(-15deg);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
}

.vision-mission-section .container {
    position: relative;
    z-index: 2;
}

.vmv-threads {
    position: absolute;
    top: -100%;
    /* Start higher for downward animation */
    left: 0;
    width: 100%;
    height: 200%;
    /* Double height for seamless vertical animation */
    z-index: 1;
    pointer-events: none;
}

.vmv-thread-svg {
    width: 100%;
    height: 100%;
    opacity: 0.12;
}

.thread-path {
    fill: none;
    stroke-width: 0.15;
    /* Slightly thicker */
    stroke-linecap: round;
    stroke-dasharray: 1, 3;
    /* More spacing for stitch look */
    animation: vmvWeaveVertical 8s linear infinite;
    /* Significantly faster base speed */
}

.thread-1 {
    stroke: #800080;
}

.thread-2 {
    stroke: #8B2323;
    animation-duration: 12s;
    animation-delay: -3s;
}

.thread-3 {
    stroke: #2D5A47;
    animation-duration: 10s;
    animation-delay: -5s;
}

.thread-4 {
    stroke: #B35A2D;
    animation-duration: 14s;
    animation-delay: -7s;
}

.thread-5 {
    stroke: #800080;
    animation-duration: 9s;
    animation-delay: -2s;
}

@keyframes vmvWeaveVertical {
    0% {
        transform: translateY(0);
        stroke-dashoffset: 0;
    }

    100% {
        transform: translateY(50%);
        /* Move downward */
        stroke-dashoffset: -20;
        /* Flow along the path */
    }
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    padding: 1rem;
}

@media (min-width: 992px) {
    .vmv-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.vmv-card {
    background: #ffffff;
    padding: 60px 30px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(128, 0, 128, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: visible;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(128, 0, 128, 0.05);
    border-top: 5px solid var(--card-color);
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(128, 0, 128, 0.15);
}



/* Card Specific Colors */
.card-mission {
    --card-color: #B35A2D;
    /* Orange-Brown from image */
}

.card-vision {
    --card-color: #8B2323;
    /* Dark Red from image */
}

.card-values {
    --card-color: #2D5A47;
    /* Dark Forest Green from image */
}

/* Icon Styling */
.card-icon {
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}

.card-icon i {
    font-size: 2rem;
    /* Smaller, minimalist icon */
    color: var(--card-color);
    transition: all 0.3s ease;
}

.vmv-card:hover .card-icon {
    background: transparent;
    transform: scale(1.1);
}

.vmv-card:hover .card-icon i {
    color: var(--card-color);
    transform: none;
}

/* Text Styling */
.vmv-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--card-color);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.vmv-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: center;
    width: 100%;
    flex-grow: 1;
}

.values-list li {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Contact Modern Design */
.contact-modern {
    background-color: var(--light-color);
    padding: 8rem 0;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

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

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-badge {
    background: rgba(155, 48, 255, 0.15);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    display: inline-block;
}

.contact-main-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--secondary-color), #4dabff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-main-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 500px;
}

.contact-feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 1px solid rgba(128, 0, 128, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(128, 0, 128, 0.05);
}

.contact-feature-item:hover .feature-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 30px rgba(128, 0, 128, 0.3);
}

.feature-details {
    display: flex;
    flex-direction: column;
}

.feature-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.feature-link {
    font-size: 1.1rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: var(--secondary-color);
}

/* Glass Form Card */
.contact-form-container {
    perspective: 1000px;
}

.glass-form-card {
    background: var(--white);
    border: 1px solid rgba(128, 0, 128, 0.1);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(128, 0, 128, 0.1);
}

.glass-form-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(155, 48, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

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

@media (min-width: 640px) {
    .form-split {
        grid-template-columns: 1fr 1fr;
    }
}

.form-input-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-input-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.form-input-group input,
.form-input-group select,
.form-input-group textarea {
    background: var(--light-color);
    border: 1px solid rgba(128, 0, 128, 0.1);
    border-radius: 12px;
    padding: 0 1.25rem;
    height: 55px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input-group textarea {
    height: auto;
    padding: 1rem 1.25rem;
}

.form-input-group input::placeholder,
.form-input-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.5;
}

.form-input-group input:focus,
.form-input-group select:focus,
.form-input-group textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(155, 48, 255, 0.1);
}

.form-input-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 3rem;
}

.select-modern-wrapper {
    position: relative;
    width: 100%;
}

.select-modern-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-light);
    font-size: 1rem;
}

.contact-submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, #2563eb, #9333ea);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 1rem;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, #3b82f6, #a855f7);
}

.form-footer-note {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-light);
    opacity: 0.6;
    letter-spacing: 1px;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .glass-form-card {
        padding: 2rem 1.5rem;
    }

    /* About Section */
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

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

    /* VMV Section */
    .vmv-grid {
        grid-template-columns: 1fr;
    }

    /* Why Choose Us Path */
    .path-steps {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .thread-line-bg {
        display: none;
    }

    .path-step {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        align-items: center;
        text-align: center;
    }

    .footer-section h4 {
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section p {
        text-align: center;
    }

    .footer-section ul {
        text-align: center;
    }

    .footer-section ul li a {
        justify-content: center;
    }

    .footer-section ul li {
        justify-content: center;
    }

    .footer-logo {
        margin: 0 auto;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .contact-main-title {
        font-size: 2.2rem;
    }

    .glass-form-card {
        padding: 1.5rem 1rem;
    }

    .product-item {
        min-width: 250px;
    }
}

/* Form Validation Styles */
.error-msg {
    color: #ff4d4d;
    font-size: 0.75rem;
    margin-top: 5px;
    display: none;
    font-weight: 500;
}

.form-input-group.invalid input,
.form-input-group.invalid select,
.form-input-group.invalid textarea {
    border-color: #ff4d4d !important;
    background: rgba(255, 77, 77, 0.05);
}

.form-input-group.invalid .error-msg {
    display: block;
}

/* ============================================
   Map Section
   ============================================ */
.map-section {
    padding: 1.5rem 0 3rem;
    background-color: var(--light-color);
}

.map-section .section-header {
    margin-bottom: 2.5rem;
}

.map-directions {
    text-align: center;
    padding: 1.5rem 0;
}

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(128, 0, 128, 0.25);
}

.map-directions-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(128, 0, 128, 0.35);
}

.map-wrapper {
    width: 100%;
    overflow: hidden;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 420px;
    filter: grayscale(10%) contrast(1.05);
    transition: filter 0.3s ease;
}

.map-wrapper iframe:hover {
    filter: grayscale(0%) contrast(1);
}

@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 300px;
    }
}