@import url('https://fonts.googleapis.com/css2?family=Kalnia:wght@100..700&family=Vidaloka&display=swap');

/* ==========================================
   GLOBAL STYLES & CSS RESET
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #F47200;
    --secondary-color: #000000;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #666666;
    --dark-gray: #333333;
    --orange: #f36d00ee;
  
    /* Fonts */
    --font-heading: 'Vidaloka', serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 40px 0;
    --container-padding: 0 20px;

    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    position: relative;
    /* Needed for absolute positioning of pseudo-element */
}

/* Watermark Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('src/images/tower-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.2;
    /* Adjust this value for watermark intensity (0.05 to 0.1 is usually good) */
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    font-family: var(--font-body);
    margin-bottom: 1rem;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background-color:var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 114, 0, 0.3);
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
}

.logo-image {
    height: 36px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    /*height: 100vh;*/
    min-height: 600px;
    background-image: url('src/images/hero-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(246, 149, 13, 0.864) 0%, rgba(255, 111, 0, 0.985) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 24px;
    color: var(--white);
}

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

.hero-description {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

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

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

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-title {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==========================================
   SERVICES SECTION (What We Do Best)
   ========================================== */
.services-section {
    padding: var(--section-padding);
    /* background-color: var(--light-gray); */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-title {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.service-description {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

.services-section .btn {
    display: block;
    margin: 0 auto;
    width: fit-content;
}


/* ==========================================
   EXPERIENCE SECTION
   ========================================== */
.experience-section {
    padding: var(--section-padding);
    /* background-color: var(--white); */
}

.experience-container {
    max-width: 100%;
}

.experience-image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.experience-main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.experience-stats {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-box {
    text-align: center;
    padding: 0 20px;
    border-right: 2px solid #E0E0E0;
}

.stat-box:last-child {
    border-right: none;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.4;
    font-weight: 500;
}

.experience-content-new {
    max-width: 800px;
}

.experience-text-new {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Legacy styles - keep for compatibility */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.experience-subtitle {
    font-size: 28px;
    margin-bottom: 20px;
}

.experience-text {
    color: var(--medium-gray);
    margin-bottom: 24px;
    line-height: 1.8;
}

.experience-list {
    list-style: none;
    margin-bottom: 32px;
}

.experience-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.experience-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

/* ==========================================
   BELIEFS SECTION
   ========================================== */
.beliefs-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

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

.belief-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.belief-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.belief-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.belief-title {
    font-size: 24px;
    margin-bottom: 16px;
}

.belief-description {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* ==========================================
   VALUES SECTION
   ========================================== */
.values-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.value-card {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.value-number {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.value-title {
    font-size: 24px;
    margin-bottom: 12px;
}

.value-description {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* ==========================================
   PROJECTS SECTION
   ========================================== */
.projects-section {
    padding: var(--section-padding);
    /* background-color: var(--light-gray); */
}

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

.project-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 28px;
}

.project-title {
    font-size: 24px;
    margin-bottom: 12px;
}

.project-description {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

/* ==========================================
   WHY CHOOSE SECTION
   ========================================== */
.why-choose-section {
    padding: var(--section-padding);
    /* background-color: var(--light-gray); */
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.why-card {
    display: flex;
    flex-direction: column;
    padding: 48px 32px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.why-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.why-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.why-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.why-description {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 15px;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 64px;
    height: 64px;
    margin-bottom: 30px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-text {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.testimonial-role {
    font-size: 15px;
    color: var(--medium-gray);
    margin: 0;
}

/* Legacy styles - for backward compatibility */
.testimonial-rating {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-author h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-author p {
    color: var(--medium-gray);
    font-size: 14px;
    margin: 0;
}

/* ==========================================
   TEAM SECTION
   ========================================== */
.team-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.team-card {
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-name {
    font-size: 20px;
    margin-bottom: 8px;
}

.team-role {
    color: var(--primary-color);
    font-size: 14px;
    margin: 0;
}

/* ==========================================
   PARTNERS SECTION
   ========================================== */
.partners-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.partners-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 40px 20px;
    background-color: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.stat-label {
    color: var(--medium-gray);
    font-size: 16px;
    margin: 0;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--orange);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 16px;
}

.footer-logo-image {
    height: 36px;
    width: auto;
    display: block;
}

.footer-description {
    color: rgb(255, 255, 255);
    margin-bottom: 24px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    color: rgb(255, 255, 255);
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.footer-bottom p {
    color: rgb(255, 255, 255);
    margin: 0;
}

/* ==========================================
   RESPONSIVE DESIGN - TABLET
   ========================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .experience-main-image {
        height: 500px;
    }

    .experience-stats {
        bottom: 20px;
        right: 20px;
        gap: 20px;
        padding: 20px 30px;
    }

    .stat-value {
        font-size: 40px;
    }

    .stat-label {
        font-size: 12px;
    }

    .experience-grid {
        gap: 40px;
    }

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

    .beliefs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE
   ========================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-container {
        padding: 16px 20px;
    }

    .logo-image {
        height: 28px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        gap: 0;
    }

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

    .nav-menu li {
        margin-bottom: 24px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-container>.btn-primary {
        display: none;
    }

    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .experience-main-image {
        height: 350px;
    }

    .experience-stats {
        position: static;
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
        padding: 24px;
        border-radius: 8px;
    }

    .stat-box {
        border-right: none;
        border-bottom: 2px solid #E0E0E0;
        padding: 16px 0;
    }

    .stat-box:last-child {
        border-bottom: none;
    }

    .stat-value {
        font-size: 36px;
    }

    .stat-label {
        font-size: 13px;
    }

    .experience-image-wrapper {
        margin-bottom: 30px;
    }

    .experience-content-new {
        max-width: 100%;
    }

    .experience-text-new {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .experience-image img {
        height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .service-card {
        padding: 32px 24px;
    }

    .beliefs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-card {
        flex-direction: column;
        /* text-align: center; */
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-image img {
        height: 400px;
    }

    .partners-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 16px;
    }
}

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

    .section-title {
        font-size: 24px;
    }

    .belief-card,
    .value-card,
    .testimonial-card {
        padding: 24px;
    }
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */

/* About Hero Section */
.about-hero {
    background-color: var(--primary-color);
    padding: 150px 0 100px;
    margin-top: 70px;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--white);
    margin: 0;
}

/* Introduction Section */
.intro-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.intro-content {
    padding: 20px 0;
}

.intro-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--medium-gray);
}

.intro-content .btn {
    margin-top: 20px;
}

/* Mission Section */
.mission-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-content,
.vision-content {
    padding: 20px 0;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.mission-content p,
.vision-content p {
    margin-top: 20px;
    line-height: 1.8;
    color: var(--medium-gray);
}

.mission-image img,
.vision-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* Vision Section */
.vision-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Journey Timeline Section - Sticky Scroll */
.journey-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.section-title.center {
    text-align: center;
    margin-bottom: 60px;
}

/* Sticky Timeline Container */
.sticky-timeline {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sticky Years Navigation */
.timeline-years-nav {
    position: sticky;
    top: 120px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-nav-item {
    background-color: #E0E0E0;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: bold;
    padding: 24px 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.timeline-nav-item.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-left: 4px solid var(--secondary-color);
}

/* Scrollable Timeline Content */
.timeline-content-scroll {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-year-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Timeline Cards */
.timeline-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.timeline-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.timeline-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.timeline-card-content {
    padding: 32px;
}

.timeline-year-label {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: bold;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.timeline-card-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.timeline-card-content p {
    line-height: 1.8;
    color: var(--medium-gray);
    font-size: 16px;
}

/* Industry Leaders Section */
.leaders-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.section-subtitle.center {
    text-align: center;
    max-width: 600px;
    margin: 16px auto 60px;
    color: var(--medium-gray);
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.leader-card {
    background-color: var(--light-gray);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.leader-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.leader-card p {
    line-height: 1.7;
    color: var(--medium-gray);
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 60px;
    }

    .about-hero-title {
        font-size: 36px;
    }

    .intro-grid,
    .mission-grid,
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-image img,
    .mission-image img,
    .vision-image img {
        height: 300px;
    }

    /* Sticky Timeline Mobile */
    .sticky-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline-years-nav {
        position: relative;
        top: 0;
        flex-direction: row;
        overflow-x: auto;
    }

    .timeline-nav-item {
        font-size: 24px;
        padding: 16px 24px;
        flex-shrink: 0;
        border-left: none;
        border-bottom: 4px solid transparent;
    }

    .timeline-nav-item.active {
        border-left: none;
        border-bottom: 4px solid var(--secondary-color);
    }

    .timeline-card img {
        height: 250px;
    }

    .timeline-card-content {
        padding: 24px;
    }

    .timeline-card-content h3 {
        font-size: 22px;
    }

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

.year-tab {
    display: block;
    width: 100%;
    padding: 0.6rem 0.8rem;
    text-align: left;
    border: none;
    background: transparent;
    cursor: pointer;
}

.year-tab.active {
    background: #0b74de;
    /* example highlight color */
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
}

/* Service List Styles */
.service-list {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.service-list li {
    margin-bottom: 8px;
    padding-left: 5px;
}

/* Mission List Styles */
.mission-list {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.8;
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.mission-list li {
    margin-bottom: 12px;
    padding-left: 5px;
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */
.page-header {
    background-color: var(--primary-color);
    padding: 80px 0;
    margin-top: 70px;
    color: var(--white);
    display: flex;
    align-items: center;
}

.page-title {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--white);
}

.breadcrumb {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb .separator {
    margin: 0 8px;
}

.breadcrumb .current {
    opacity: 0.9;
}

.contact-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column: Info */
.contact-heading {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-desc {
    color: var(--medium-gray);
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.6;
    max-width: 90%;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-icon {
    width: 24px;
    height: 24px;
    color: var(--dark-gray);
    margin-right: 20px;
    margin-top: 4px;
}

.info-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-text {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* Right Column: Form */
.contact-form-column {
    background-color: transparent;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-control {
    width: 100%;

    padding: 16px 20px;
    border: 1px solid #e0e0e0;
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark-gray);
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
}

.form-control.textarea {
    resize: vertical;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    padding: 18px 36px;
    align-self: flex-start;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background-color: #d66200;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .page-title {
        font-size: 36px;
    }

    .contact-heading {
        font-size: 32px;
    }
}

/* ==========================================
   SERVICES PAGE STYLES
   ========================================== */

/* Hero Specifics */
.services-hero {
    background-color: var(--primary-color);
}

/* Section Common */
.section-top {
    margin-bottom: 60px;
}

.section-heading-sm {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-family: var(--font-body);
}

.section-desc-sm {
    font-size: 14px;
    color: var(--medium-gray);
    max-width: 600px;
}

/* Services Grid List */
.services-list-section {
    padding: 100px 0;
    background-color: #fafafa;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    row-gap: 60px;
}

.service-item-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-icon-sm {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.service-content-sm {
    text-align: left;
}

.service-title-sm {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.service-text-sm {
    font-size: 13px;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Our Work Section */
.our-work-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

.work-card {
    display: flex;
    flex-direction: column;
}

.work-image {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

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

.work-content {
    text-align: left;
}

.work-date {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
}

.work-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-family: var(--font-body);
}

.work-desc {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Testimonial Split Section */
.testimonial-split-section {
    padding: 100px 0;
    background-color: #fafafa;
}

.testimonial-split-content {
    display: flex;
    align-items: stretch;
    background-color: var(--white);
    /* border-radius: 8px; */
    overflow: hidden;
    /* box-shadow: 0 5px 20px rgba(0,0,0,0.05); */
}

.testimonial-image-side {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.testimonial-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.testimonial-text-side {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    font-size: 60px;
    line-height: 1;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: serif;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background-color: #ccc;
    border-radius: 50%;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.author-role {
    font-size: 12px;
    color: var(--medium-gray);
}

/* Contact Reuse Overrides */
.contact-header-block {
    margin-bottom: 40px;
}

/* Responsive Services Page */
@media (max-width: 1024px) {
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-page-grid {
        grid-template-columns: 1fr;
    }

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

    .testimonial-split-content {
        flex-direction: column;
    }

    .testimonial-image-side {
        height: 300px;
        min-height: auto;
    }

    .testimonial-text-side {
        padding: 40px;
    }
}

/* ==========================================
   NEW INTRO SECTION (OVERLAP LAYOUT)
   ========================================== */
.intro-new-section {
    /* padding: 100px 0;
    overflow: hidden; */
    padding: var(--section-padding);
    background-color: var(--light-gray);
    /* Prevent spill */
}

.intro-new-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.intro-new-image {
    width: 50%;
    z-index: 2;
    /* Image on top? Screenshot shows Image on top of white, but next to orange. Overlap usually implies one covers other. */
    /* Based on typical "Dreamland" style: Image Left, Orange Box Right. Orange Box acts as background for text. */
    flex-shrink: 0;
    margin-right: 64px;
}

.intro-new-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.intro-new-content {
    background-color: var(--primary-color);
    padding: 80px 80px 80px 100px;
    /* Extra left padding for visual balance if overlapped */
    width: 60%;
    /* Wider to create overlap */
    margin-left: -10%;
    /* Pull content box left under image, OR pull it left to be overlapped BY image. */
    /* Let's Try: Image floats LEFT. Content Box floats RIGHT but pulls left. */
    /* If Image is Z-Index 2, it covers content. If Content is Z-Index 2, it covers image. */
    /* Screenshot: Image seems independent. Content box is large orange block. */
    /* Let's go with Image overlapping the Content Box. */
    z-index: 1;
    color: var(--white);
    position: relative;
    /* Adjusting to match simple blocky style if typically requested. */
}

/* Specific styling for orange box content */
.intro-divider {
    width: 50px;
    height: 2px;
    background-color: var(--dark-gray);
    /* Or subtle dark line */
    margin-bottom: 20px;
    border: none;
    opacity: 0.5;
}

.intro-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    /* Black/Dark text on Orange? Or White? Standard is often Black on Orange or White. Let's use Black (Secondary) as per high contrast request typically, or White. Screenshot text looked dark? "Introduction Dreamland" usually black. layout. */
    /* Wait, checking style.css, primary is Orange. Secondary is Black. */
    /* User said "Introduction Dreamland Contractor". Usually that's dark text on orange? Let's assume dark for now or check contrast. Orange #F47200 is bright. Black is safe. White is also good. */
    /* Let's set to var(--secondary-color) which is black. */
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-text {
    color: #333;
    /* Dark gray for readability on orange */
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.intro-new-content .btn-dark {
    /*background-color: var(--white);*/
    color: #fff;
    border: 2px solid var(--white);
}

.intro-new-content .btn-dark:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .intro-new-wrapper {
        flex-direction: column;
    }

    .intro-new-image {
        width: 100%;
        margin-bottom: 0;
        z-index: 1;
    }

    .intro-new-content {
        width: 100%;
        margin-left: 0;
        margin-top: -50px;
        /* Slight overlap upwards */
        padding: 60px 40px;
        z-index: 2;
    }
}
/* ==========================================
   SERVICE LIST STYLES
   ========================================== */
.service-list-sm {
    list-style: none;
    margin-top: 16px;
    padding-left: 0;
}

.service-list-sm li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.6;
}

.service-list-sm li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
    line-height: 1.4;
}

/* ==========================================
   TESTIMONIAL CAROUSEL STYLES
   ========================================== */
.testimonial-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-slides-container {
    position: relative;
    overflow: hidden;
    min-height: 500px; /* Adjust based on content height to prevent jumping */
}

/* Modify existing split content to work as slide */
.testimonial-split-content.testimonial-slide {
    display: none; /* Hidden by default */
    animation: fadeEffect 0.5s;
    width: 100%;
}

.testimonial-split-content.testimonial-slide.active {
    display: flex; /* Show when active */
}

@keyframes fadeEffect {
    from {opacity: 0.4;}
    to {opacity: 1;}
}

/* Nav Buttons */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
    z-index: 10;
}

.testimonial-nav:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -25px; /* Pull out slightly */
}

.next-btn {
    right: -25px; /* Pull out slightly */
}

@media (max-width: 768px) {
    .testimonial-nav {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: -60px; /* Move below on mobile */
        transform: none;
    }
    
    .testimonial-nav:hover {
        transform: scale(1.1);
    }
    
    .prev-btn {
        left: 30%;
    }
    
    .next-btn {
        right: 30%;
    }
    
    .testimonial-slides-container {
        min-height: auto; /* Let it grow */
    }
    
    .testimonial-carousel {
        margin-bottom: 60px; /* Space for buttons */
    }
}

/* ==========================================
   WORK EXPERIENCE SECTIONS
   ========================================== */
.experience-intro-text {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--medium-gray);
}

.experience-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.experience-item {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.experience-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-gray);
    line-height: 1.4;
}

.experience-desc {
    font-size: 15px;
    color: var(--medium-gray);
    margin-bottom: 20px;
    font-style: italic;
}

.details-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.project-list li {
    font-size: 15px;
    color: var(--medium-gray);
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    line-height: 1.5;
}

.project-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.scope-text {
    font-size: 14px;
    color: var(--dark-gray);
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* Summary Box */
.experience-summary {
    max-width: 800px;
    margin: 60px auto 0;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}

.summary-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-gray);
    text-align: center;
}

.summary-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.summary-list li {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .experience-list {
        grid-template-columns: 1fr;
    }
    
    .experience-item {
        padding: 20px;
    }
    
    .summary-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   ABOUT PAGE OVERHAUL STYLES
   ========================================== */

/* Overview Section */
.about-overview-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.subtitle-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.divider-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 20px 0 30px;
}

.leadership-block {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 30px;
}

.key-info-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.key-info-list li {
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--dark-gray);
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

/* Vision & Mission Cards */
.vision-mission-section {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.vm-card h3 {
    font-size: 28px;
    margin: 20px 0;
    color: var(--dark-gray);
}

.vm-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vm-list {
    list-style: none;
    padding: 0;
}

.vm-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--medium-gray);
}

.vm-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Why Choose Us Cards */
.why-choose-section {
    padding: var(--section-padding);
    /* background-color: var(--white); */
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.feature-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.feature-card p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
}
