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

body {
    font-family: 'Montserrat', 'Open Sans', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
}

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

/* Top Banner */
.top-banner {
    background-color: #000;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
}

.top-banner p {
    margin: 0;
}

/* Header */
.main-header {
    background-color: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 32px;
    color: #fff;
    margin: 0;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo p {
    font-size: 11px;
    color: #ccc;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 18px;
    position: relative;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.main-nav > ul > li {
    position: relative;
    display: flex;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    line-height: 1;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #FFD700;
}

.nav-contact-btn {
    background-color: #FFD700;
    color: #000 !important;
    padding: 8px 18px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 12px;
}

.nav-contact-btn:hover {
    background-color: #FFC700;
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Submenu Styles */
.has-submenu {
    position: relative;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    min-width: 200px;
    padding: 10px 0;
    margin-top: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-top: 2px solid #FFD700;
}

.submenu li {
    margin: 0;
}

.submenu a {
    padding: 12px 20px;
    font-size: 14px;
    color: #fff;
    display: block;
    transition: all 0.3s;
}

.submenu a:hover {
    color: #FFD700;
    background-color: rgba(255, 215, 0, 0.1);
    padding-left: 25px;
}

.header-cta .btn-contact {
    background-color: #FFD700;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.header-cta .btn-contact:hover {
    background-color: #FFC700;
}

/* CTA Section Styles */
.cta-content {
    text-align: center;
    padding: 80px 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.cta-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 8px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.cta-card h3 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFD700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cta-card p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: transparent;
    color: #FFD700;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
}

.btn-primary:hover {
    background-color: #FFD700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #FFD700;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
}

.btn-secondary:hover {
    background-color: #FFD700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-image-full::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding: 100px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-text h2 {
    font-size: 18px;
    font-weight: 400;
    color: #999;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-text p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #FFD700;
    color: #000;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255,215,0,0.5);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* Section Styles */
section {
    padding: 100px 0;
}

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

.section-label {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #FFD700;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-intro {
    font-size: 16px;
    color: #666;
    max-width: 900px;
    margin: 30px auto 0;
    line-height: 1.8;
}

.section-intro p {
    margin-bottom: 20px;
}

.section-intro p:last-child {
    margin-bottom: 0;
}

.section-intro strong {
    color: #000;
    font-weight: 600;
}

/* Services Section */
.services-section {
    background-color: #fff;
}

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

.service-card {
    padding: 40px;
    border-radius: 8px;
    transition: transform 0.3s;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.service-card.white {
    background-color: #fff;
    border: 2px solid #000;
}

.service-card.black {
    background-color: #000;
    color: #fff;
}

.service-card.yellow {
    background-color: #FFD700;
    color: #000;
}

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

.service-icon {
    font-size: 60px;
    margin-bottom: 25px;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
}

.service-card.white ul li:before,
.service-card.yellow ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.service-card.black ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: gap 0.3s;
}

.service-card.black .btn-learn-more {
    color: #FFD700;
}

.btn-learn-more:hover {
    gap: 15px;
}

.btn-learn-more .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #FFD700;
    border-radius: 50%;
    color: #000;
    font-size: 18px;
}

.service-card.black .btn-learn-more .arrow {
    background-color: #FFD700;
}

.service-card.yellow .btn-learn-more .arrow {
    background-color: #000;
    color: #FFD700;
}

/* Statistics Section */
.stats-section {
    background-color: #000;
    color: #fff;
    padding: 80px 0;
}

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

.stat-item h3 {
    font-size: 56px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Executive Summary Section */
.executive-summary-section {
    background-color: #fff;
    padding: 80px 0 40px 0;
}

.executive-summary-wrapper {
    margin-top: 50px;
}

.executive-summary-image {
    float: left;
    width: 40%;
    max-width: 450px;
    margin-right: 40px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.executive-summary-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.executive-summary-content {
    max-width: 100%;
    overflow: hidden;
}

.executive-summary-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 25px;
    text-align: justify;
}

.executive-summary-intro {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    line-height: 1.8;
    margin-bottom: 30px;
}

.executive-summary-conclusion {
    font-size: 19px;
    font-weight: 600;
    color: #000;
    font-style: italic;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #FFD700;
    text-align: center;
}

/* History Timeline Section */
.history-timeline-section {
    background-color: #f8f8f8;
    padding: 100px 0;
}

.timeline-accordion {
    max-width: 1000px;
    margin: 60px auto 0;
}

.accordion-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid #FFD700;
}

.accordion-item:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.accordion-item.active {
    border-left-color: #000;
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: background-color 0.3s;
    gap: 20px;
}

.accordion-header:hover {
    background-color: #f8f8f8;
}

.accordion-item.active .accordion-header {
    background-color: #000;
    color: #fff;
}

.accordion-year {
    width: 80px;
    height: 80px;
    background-color: #FFD700;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    flex-shrink: 0;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-year {
    background-color: #000;
    color: #FFD700;
    border-color: #FFD700;
}

.accordion-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.accordion-item.active .accordion-header h3 {
    color: #FFD700;
}

.accordion-icon {
    width: 35px;
    height: 35px;
    background-color: #FFD700;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    background-color: #FFD700;
    color: #000;
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 0 30px 30px;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.accordion-content ul li {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.accordion-content ul li:before {
    content: "→";
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.accordion-content ul li:last-child {
    margin-bottom: 0;
}

/* About Section */
.about-section {
    background-color: #fff;
}

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

.about-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.2;
}

.about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mv-card {
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

.mv-card h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.mv-card p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* Core Values */
.core-values {
    background-color: #000;
    padding: 80px 0;
    width: 100%;
    margin-top: 0;
}

.core-values .section-header .section-label {
    color: #FFD700;
}

.core-values .section-header .section-title {
    color: #fff;
}

.values-grid {
    margin-top: 50px;
}

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

/* Why Choose Sensetrone Section */
.why-choose-sensetrone-section {
    background-color: #000;
    padding: 80px 0;
    color: #fff;
}

.why-choose-sensetrone-section .section-header .section-label {
    color: #FFD700;
}

.why-choose-sensetrone-section .section-header .section-title {
    color: #fff;
}

.why-choose-sensetrone-section .section-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin-top: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.why-choose-table-wrapper {
    margin-top: 50px;
    overflow-x: auto;
}

.why-choose-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.why-choose-table thead {
    background-color: #000;
}

.why-choose-table th {
    padding: 25px 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #FFD700;
}

.why-choose-table td {
    padding: 25px 20px;
    color: #ccc;
    line-height: 1.8;
    font-size: 15px;
    border-bottom: 1px solid #333;
    vertical-align: top;
}

.why-choose-table tbody tr:last-child td {
    border-bottom: none;
}

.why-choose-table tbody tr:hover {
    background-color: #252525;
}

.why-choose-table td strong {
    color: #FFD700;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

/* How It Works Section */
.how-it-works-section {
    background-color: #f8f8f8;
    padding: 100px 0;
}

.how-it-works-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    position: relative;
    gap: 20px;
}

.timeline-phase {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.phase-number {
    width: 60px;
    height: 60px;
    background-color: #000;
    color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    border: 4px solid #fff;
    z-index: 2;
}

.phase-card {
    background-color: #fff;
    padding: 35px 25px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    text-align: center;
    width: 100%;
    transition: transform 0.3s;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.phase-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #FFD700;
}

.phase-icon svg {
    width: 50px;
    height: 50px;
    stroke-width: 2;
}

.phase-card:hover {
    transform: translateY(-5px);
}

.phase-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.phase-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.timeline-arrow {
    position: absolute;
    top: 30px;
    right: -30px;
    color: #FFD700;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-arrow svg {
    width: 32px;
    height: 32px;
    stroke-width: 3;
}

.timeline-phase:last-child .timeline-arrow {
    display: none;
}

/* Ongoing Project Section */
.ongoing-project-section {
    background-color: #f8f8f8;
    padding: 100px 0;
}

.ongoing-project-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.ongoing-project-content {
    padding: 20px 0;
}

.ongoing-project-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.ongoing-project-client {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.ongoing-project-client strong {
    color: #000;
}

.ongoing-project-scope {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

.ongoing-project-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.ongoing-project-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ongoing-project-challenge,
.ongoing-project-approach,
.ongoing-project-outcome {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.ongoing-project-challenge h4,
.ongoing-project-approach h4,
.ongoing-project-outcome h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ongoing-project-challenge p,
.ongoing-project-approach p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.ongoing-project-outcome blockquote {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin: 15px 0;
    padding-left: 20px;
    border-left: 3px solid #FFD700;
}

.ongoing-project-image {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ongoing-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ongoing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #FFD700;
    color: #000;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Case Studies Section */
.case-studies-section {
    background-color: #fff;
    padding: 100px 0;
}

.case-study-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.case-study-number {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 120px;
    font-weight: 700;
    color: #f0f0f0;
    line-height: 1;
    z-index: 0;
    opacity: 0.3;
    font-family: 'Montserrat', sans-serif;
}

.case-study-item:last-of-type {
    border-bottom: none;
    margin-bottom: 60px;
}

.case-study-left {
    grid-template-columns: 1fr 1fr;
}

.case-study-right {
    grid-template-columns: 1fr 1fr;
}

.case-study-right .case-study-image {
    order: 2;
}

.case-study-right .case-study-content {
    order: 1;
}

.case-study-image {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
}

.case-study-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-content {
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.case-study-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.case-study-client {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.case-study-client strong {
    color: #000;
}

.case-study-scope {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

.case-study-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.service-tag {
    background-color: #FFD700;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.case-study-challenge,
.case-study-approach,
.case-study-outcome {
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

.case-study-challenge h4,
.case-study-approach h4,
.case-study-outcome h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-challenge p,
.case-study-approach p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.case-study-outcome blockquote {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin: 15px 0;
    padding-left: 20px;
    border-left: 3px solid #FFD700;
}

.testimonial-author {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    margin-top: 10px;
    text-align: right;
}

.case-studies-cta {
    text-align: center;
    padding: 80px 60px;
    background-color: #000;
    border-radius: 10px;
    margin-top: 80px;
}

.case-studies-cta h3 {
    font-size: 36px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 40px;
    text-transform: uppercase;
    line-height: 1.3;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: left;
}

.cta-intro,
.cta-description,
.cta-call-to-action,
.cta-closing {
    font-size: 17px;
    color: #ccc;
    line-height: 1.9;
    margin-bottom: 20px;
}

.cta-intro {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.cta-call-to-action {
    font-weight: 600;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.cta-closing {
    font-style: italic;
    color: #ccc;
    margin-bottom: 0;
}

.case-studies-cta .btn-primary {
    background-color: #FFD700;
    color: #000;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 20px;
}

.case-studies-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* Our Commitment Section */
.commitment-section {
    background-color: #f8f8f8;
    padding: 80px 0;
    margin-top: 60px;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.commitment-item {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.commitment-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.commitment-item p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.value-item {
    padding: 30px;
    background-color: #1a1a1a;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #FFD700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.2);
}

.value-item h4 {
    font-size: 20px;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.value-item p {
    color: #ccc;
    line-height: 1.7;
    font-size: 14px;
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: #000;
    color: #fff;
}

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

.why-card {
    padding: 40px;
    background-color: #1a1a1a;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

.why-card h3 {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.why-card p {
    color: #ccc;
    line-height: 1.8;
    font-size: 15px;
}

/* Team Section */
.team-section {
    background-color: #fff;
}

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

.team-card {
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

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

.team-image-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FFD700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.team-card h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.team-title {
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
    font-size: 14px;
}

.team-specialization {
    font-style: italic;
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

.team-card p:last-child {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}

/* Projects/Case Studies Section */
.projects-section {
    background-color: #fff;
}

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

.projects-single-column {
    grid-template-columns: 1fr;
    gap: 0;
}

.projects-single-column .project-card {
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.projects-single-column .project-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.project-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.project-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.project-info {
    padding: 30px;
    font-size: 16px;
}

.project-info h3 {
    font-size: 26px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.project-client {
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    font-size: 16px;
}

.project-location {
    font-weight: 600;
    color: #1a5490;
    margin-bottom: 10px;
    font-size: 16px;
}

.project-services {
    color: #FFD700;
    font-size: 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.project-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 16px;
}

.project-results {
    list-style: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.project-results li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
    font-size: 15px;
}

.project-results li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

/* Project Gallery Styles */
.project-gallery {
    margin: 20px 0;
}

.gallery-main {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.gallery-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-main img:hover {
    transform: scale(1.02);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0.7;
}

.gallery-thumb:hover {
    opacity: 1;
    border-color: #FFD700;
    transform: scale(1.05);
}

.gallery-thumb.active {
    opacity: 1;
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Gallery Responsive Styles */
@media (max-width: 768px) {
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .gallery-thumb {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .gallery-thumb {
        height: 60px;
    }
}

.btn-quote {
    display: inline-block;
    background-color: #000;
    color: #FFD700;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: background-color 0.3s;
    margin-top: 15px;
}

.btn-quote:hover {
    background-color: #333;
}

/* Contact Section */
.contact-section {
    background-color: #000;
    color: #fff;
}

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

.contact-info h3,
.engagement-process h3 {
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item strong {
    display: block;
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 16px;
    text-transform: uppercase;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #FFD700;
}

.contact-item p {
    color: #ccc;
    margin-top: 8px;
    font-size: 14px;
}

.engagement-process {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
}

.process-step {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.process-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.process-step h4 {
    font-size: 20px;
    color: #FFD700;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.process-step p {
    color: #ccc;
    line-height: 1.8;
    font-size: 15px;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-card {
    padding: 40px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.process-card.white {
    background-color: #fff;
    border: 2px solid #f0f0f0;
}

.process-card.black {
    background-color: #000;
    border: 2px solid #333;
}

.process-card.yellow {
    background-color: #FFD700;
    border: 2px solid #ffed4e;
}

.process-phase-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.process-card.white .process-phase-badge {
    background-color: #000;
    color: #FFD700;
}

.process-card.black .process-phase-badge {
    background-color: #FFD700;
    color: #000;
}

.process-card.yellow .process-phase-badge {
    background-color: #000;
    color: #FFD700;
}

.process-card h3 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.3;
}

.process-card.white h3 {
    color: #000;
}

.process-card.black h3 {
    color: #fff;
}

.process-card.yellow h3 {
    color: #000;
}

.process-card > p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.process-card.white > p {
    color: #666;
}

.process-card.black > p {
    color: #ccc;
}

.process-card.yellow > p {
    color: #333;
}

.process-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-detail-item {
    padding: 20px;
    border-radius: 6px;
}

.process-card.white .process-detail-item {
    background-color: #f8f8f8;
}

.process-card.black .process-detail-item {
    background-color: #1a1a1a;
}

.process-card.yellow .process-detail-item {
    background-color: #fff;
}

.process-detail-item h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.process-card.white .process-detail-item h4 {
    color: #000;
}

.process-card.black .process-detail-item h4 {
    color: #FFD700;
}

.process-card.yellow .process-detail-item h4 {
    color: #000;
}

.process-detail-item p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.process-card.white .process-detail-item p {
    color: #666;
}

.process-card.black .process-detail-item p {
    color: #ccc;
}

.process-card.yellow .process-detail-item p {
    color: #333;
}

/* Equipment Images */
.equipment-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.equipment-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4 / 3;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.process-card.yellow .equipment-image {
    background-color: #fff;
}

.process-card.black .equipment-image {
    background-color: #1a1a1a;
}

.process-card.white .equipment-image {
    background-color: #f8f8f8;
}

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

/* Materials & Technology Section */
.materials-tech-section {
    background-color: #fff;
    padding: 100px 0;
}

.materials-tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.materials-tech-card {
    padding: 50px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

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

.materials-card {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border: 2px solid #e0e0e0;
}

.tech-card {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border: 2px solid #333;
    color: #fff;
}

.materials-tech-card h3 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #000;
}

.tech-card h3 {
    color: #fff;
}

.materials-tech-card > p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #666;
}

.tech-card > p {
    color: #ccc;
}

.materials-tech-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #333;
}

.feature-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #FFD700;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.tech-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tech-detail-item {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #FFD700;
    border-radius: 4px;
}

.tech-detail-item h4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFD700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.tech-detail-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-carousel-wrapper {
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.testimonials-carousel {
    display: flex;
    width: calc(100% * 5); /* 3 original + 2 duplicates */
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 calc(100% / 3);
    padding: 0 15px;
    box-sizing: border-box;
    opacity: 0;
    animation: slideIn 0.8s ease-out forwards;
    min-width: 0;
    overflow: hidden;
}

.testimonial-slide:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-slide:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-slide:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    padding: 60px;
    background-color: #fff;
    border-left: 6px solid #FFD700;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    animation: fadeInUp 0.6s ease-out;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.testimonial-item:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-item-reverse {
    flex-direction: row-reverse;
    border-left: none;
    border-right: 6px solid #000;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #fff;
}

.testimonial-item-reverse:hover {
    transform: translateX(-10px);
}

.testimonial-quote-mark {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: #FFD700;
    opacity: 0.3;
    font-family: Georgia, serif;
    flex-shrink: 0;
    margin-top: -20px;
    animation: quotePulse 2s ease-in-out infinite;
    transform-origin: center;
}

.testimonial-item-reverse .testimonial-quote-mark {
    color: #FFD700;
    opacity: 0.4;
}

@keyframes quotePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.4;
    }
}

.testimonial-content-wrapper {
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.testimonial-headline {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #000;
    letter-spacing: 1px;
    line-height: 1.2;
    animation: fadeInLeft 0.8s ease-out 0.2s both;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.testimonial-item-reverse .testimonial-headline {
    color: #FFD700;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 35px;
    font-style: italic;
    position: relative;
    animation: fadeIn 1s ease-out 0.4s both;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.testimonial-item-reverse .testimonial-quote {
    color: #ccc;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.testimonial-meta {
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.testimonial-item-reverse .testimonial-meta {
    border-top-color: #333;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.5px;
}

.testimonial-item-reverse .author-name {
    color: #fff;
}

.author-separator {
    color: #FFD700;
    font-weight: 700;
    font-size: 18px;
}

.author-project {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.testimonial-item-reverse .author-project {
    color: #999;
}

/* Carousel Navigation Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
    animation: fadeIn 1s ease-out 0.8s both;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #FFD700;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.dot:hover {
    background-color: #999;
    transform: scale(1.3);
}

.dot:hover::before {
    width: 100%;
    height: 100%;
}

.dot.active {
    background-color: #FFD700;
    width: 32px;
    border-radius: 6px;
    border-color: #FFD700;
    animation: dotPulse 2s ease-in-out infinite;
}

.dot.active::before {
    display: none;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 215, 0, 0);
    }
}

/* Footer */
.main-footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFD700;
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
    line-height: 1.8;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #999;
}

/* Page Header (for inner pages) */
.page-header {
    background-color: #000;
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.page-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #FFD700;
    line-height: 1.3;
}

.page-header p {
    font-size: 18px;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #f8f8f8;
    padding: 15px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #000;
}

.breadcrumb span {
    color: #999;
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .stats-grid,
    .values-grid,
    .team-grid,
    .projects-grid,
    .process-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .main-nav a {
        font-size: 12px;
    }
    
    .nav-contact-btn {
        padding: 7px 15px;
        font-size: 11px;
    }
    
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 5px;
        padding: 5px 0;
        border-top: none;
        border-left: 2px solid #FFD700;
        padding-left: 15px;
    }
    
    .submenu a {
        padding: 8px 15px;
    }

    .hero {
        min-height: 500px;
    }
    
    .hero .container {
        padding: 60px 20px;
    }

    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .services-grid,
    .stats-grid,
    .values-grid,
    .commitment-grid,
    .team-grid,
    .projects-grid,
    .process-grid,
    .cta-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-sensetrone-section {
        padding: 60px 0;
    }
    
    .why-choose-sensetrone-section .section-intro {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .why-choose-table-wrapper {
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .why-choose-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .why-choose-table thead,
    .why-choose-table tbody,
    .why-choose-table tr {
        display: block;
    }
    
    .why-choose-table th,
    .why-choose-table td {
        display: block;
        width: 100%;
        padding: 20px 15px;
        white-space: normal;
        border-bottom: 1px solid #333;
    }
    
    .why-choose-table th {
        font-size: 16px;
        border-bottom: 2px solid #FFD700;
    }
    
    .why-choose-table td {
        font-size: 14px;
    }
    
    .why-choose-table tbody tr {
        margin-bottom: 20px;
        background-color: #1a1a1a;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .ongoing-project-section {
        padding: 60px 0;
    }
    
    .ongoing-project-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    
    .ongoing-project-header h3 {
        font-size: 26px;
    }
    
    .ongoing-project-image {
        height: 400px;
    }
    
    .ongoing-badge {
        top: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .how-it-works-timeline {
        flex-direction: column;
        gap: 50px;
        margin-top: 40px;
    }
    
    
    .timeline-phase {
        width: 100%;
    }
    
    .phase-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .phase-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .phase-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .timeline-arrow svg {
        width: 24px;
        height: 24px;
    }
    
    .phase-card {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .phase-card {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .phase-card h3 {
        font-size: 18px;
    }
    
    .phase-card p {
        font-size: 14px;
    }
    
    .timeline-arrow {
        display: none;
    }
    
    .case-studies-section {
        padding: 60px 0;
    }
    
    .case-study-item {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
        padding: 30px 0;
    }
    
    .case-study-number {
        font-size: 80px;
        top: -10px;
        left: -10px;
    }
    
    .case-study-right .case-study-image {
        order: 1;
    }
    
    .case-study-right .case-study-content {
        order: 2;
    }
    
    .case-study-image {
        height: 350px;
    }
    
    .case-study-header h3 {
        font-size: 24px;
    }
    
    .case-study-challenge,
    .case-study-approach,
    .case-study-outcome {
        padding: 15px;
    }
    
    .case-studies-cta {
        padding: 50px 30px;
        margin-top: 60px;
    }
    
    .case-studies-cta h3 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .cta-content {
        text-align: left;
        margin-bottom: 30px;
    }
    
    .cta-intro,
    .cta-description,
    .cta-call-to-action,
    .cta-closing {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .cta-intro {
        font-size: 16px;
    }
    
    .case-studies-cta .btn-primary {
        padding: 15px 40px;
        font-size: 14px;
    }
    
    .commitment-section {
        padding: 60px 0;
        margin-top: 40px;
    }
    
    .commitment-item {
        padding: 30px;
    }
    
    .commitment-item h3 {
        font-size: 20px;
    }
    
    .commitment-item p {
        font-size: 14px;
    }
    
    .why-card {
        padding: 30px;
    }
    
    .why-card h3 {
        font-size: 20px;
    }
    
    .why-card p {
        font-size: 14px;
    }
    
    .cta-card {
        padding: 35px;
    }
    
    .cta-card h3 {
        font-size: 24px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .testimonials-container {
        gap: 40px;
    }
    
    .testimonial-item {
        padding: 30px;
    }
    
    .testimonial-quote-mark {
        font-size: 60px;
    }
    
    .testimonial-headline {
        font-size: 20px;
    }
    
    .testimonial-quote {
        font-size: 16px;
    }
    
    .testimonial-author-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .author-separator {
        display: none;
    }
    
    .process-card {
        padding: 30px;
    }
    
    .process-card h3 {
        font-size: 20px;
    }
    
    .process-detail-item {
        padding: 15px;
    }
    
    .materials-tech-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        padding: 35px;
    }
    
    .cta-card h3 {
        font-size: 24px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .materials-tech-card {
        padding: 35px;
    }
    
    .materials-tech-card h3 {
        font-size: 24px;
    }
    
    .executive-summary-section {
        padding: 60px 0;
    }
    
    .executive-summary-image {
        float: none;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-bottom: 30px;
    }
    
    .executive-summary-content {
        padding: 0 20px;
    }
    
    .executive-summary-content p {
        font-size: 16px;
        text-align: left;
    }
    
    .executive-summary-intro {
        font-size: 18px;
    }
    
    .executive-summary-conclusion {
        font-size: 17px;
    }
    
    .accordion-header {
        padding: 20px;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .accordion-year {
        width: 70px;
        height: 70px;
        font-size: 14px;
    }
    
    .accordion-header h3 {
        font-size: 18px;
    }
    
    .accordion-icon {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
    
    .accordion-content {
        padding: 0 20px;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 20px 20px;
    }
    
    .accordion-content ul li {
        font-size: 14px;
    }

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

    section {
        padding: 60px 0;
    }
}

/* Training Page Styles */
.training-programs-section {
    padding: 100px 0;
    background-color: #fff;
}

.training-programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.training-program-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

/* Featured Image */
.program-featured-image {
    width: 100%;
    height: 0;
    padding-bottom: 70%;
    overflow: hidden;
    position: relative;
    background-color: #e5e7eb;
    display: block;
}

.program-featured-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.training-program-card:hover .program-featured-image img {
    transform: scale(1.05);
}

/* Program Content */
.program-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.training-program-card h2 {
    font-size: 22px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.program-tagline {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* Color Coding */
.program-qs .program-tagline {
    color: #2563eb;
}

.program-interview .program-tagline {
    color: #10b981;
}

.program-behavior .program-tagline {
    color: #f59e0b;
}

/* Feature Items */
.program-features {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.program-qs .feature-item:hover {
    background-color: #eff6ff;
}

.program-interview .feature-item:hover {
    background-color: #ecfdf5;
}

.program-behavior .feature-item:hover {
    background-color: #fffbeb;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.program-qs .feature-icon {
    background-color: #dbeafe;
    color: #2563eb;
}

.program-interview .feature-icon {
    background-color: #d1fae5;
    color: #10b981;
}

.program-behavior .feature-icon {
    background-color: #fef3c7;
    color: #f59e0b;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-content strong {
    font-size: 15px;
    color: #000;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.feature-content span {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* Program Footer */
.program-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.program-audience {
    margin-bottom: 15px;
}

.program-audience h4 {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    margin-bottom: 8px;
}

.program-audience p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.program-duration {
    padding-top: 15px;
    border-top: 1px solid #f3f4f6;
}

.program-duration p {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
    line-height: 1.5;
}

.program-duration p strong {
    color: #000;
    font-weight: 600;
}

.why-choose-training-section {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.why-choose-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-card-new {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.why-choose-card-new::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #FFD700;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.why-choose-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #FFD700;
}

.why-choose-card-new:hover::before {
    transform: scaleY(1);
}

.why-choose-icon-wrapper {
    flex-shrink: 0;
}

.why-choose-icon-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    transition: all 0.3s ease;
    position: relative;
}

.why-choose-card-new:hover .why-choose-icon-new {
    background: linear-gradient(135deg, #FFD700 0%, #ffed4e 100%);
    color: #000;
    transform: scale(1.1) rotate(5deg);
}

.why-choose-icon-new svg {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.why-choose-card-new:hover .why-choose-icon-new svg {
    transform: scale(1.1);
}

.why-choose-content-new {
    flex: 1;
}

.why-choose-content-new h3 {
    font-size: 22px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.why-choose-content-new p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Make the 5th item (last) span full width */
.why-choose-grid-new .why-choose-card-new:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.schedule-fees-section {
    padding: 100px 0;
    background-color: #fff;
}

.schedule-table-wrapper {
    margin-top: 60px;
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.schedule-table thead {
    background-color: #000;
    color: #fff;
}

.schedule-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-table td {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: #555;
}

.schedule-table tbody tr:hover {
    background-color: #f8f8f8;
}

.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

.corporate-discount-note {
    margin-top: 30px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
}

.faq-section {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.faq-accordion {
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f8f8f8;
}

.faq-question h3 {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #FFD700;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Training Page Responsive */
@media (max-width: 1024px) {
    .training-programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .program-featured-image {
        padding-bottom: 76%;
    }
    
    .program-content {
        padding: 25px 20px;
    }
    
    .why-choose-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .why-choose-card-new {
        padding: 35px;
        gap: 25px;
    }
    
    .why-choose-icon-new {
        width: 70px;
        height: 70px;
    }
    
    .why-choose-icon-new svg {
        width: 35px;
        height: 35px;
    }
    
    .why-choose-content-new h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .training-programs-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .program-featured-image {
        padding-bottom: 80%;
    }
    
    .program-content {
        padding: 25px 20px;
    }
    
    .training-program-card h2 {
        font-size: 20px;
    }
    
    .program-tagline {
        font-size: 15px;
    }
    
    .feature-item {
        padding: 12px;
        gap: 12px;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
    }
    
    .feature-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .feature-content strong {
        font-size: 14px;
    }
    
    .feature-content span {
        font-size: 12px;
    }
    
    .why-choose-grid-new {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-choose-card-new {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        gap: 20px;
    }
    
    .why-choose-icon-new {
        margin: 0 auto;
    }
    
    .schedule-table-wrapper {
        overflow-x: scroll;
    }
    
    .schedule-table {
        min-width: 700px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .training-programs-grid {
        gap: 30px;
    }
    
    .program-featured-image {
        padding-bottom: 90%;
    }
    
    .program-content {
        padding: 20px 15px;
    }
    
    .training-program-card h2 {
        font-size: 18px;
    }
    
    .program-tagline {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .program-features {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .feature-item {
        padding: 10px;
        gap: 10px;
    }
    
    .feature-icon {
        width: 32px;
        height: 32px;
    }
    
    .feature-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .feature-content strong {
        font-size: 13px;
    }
    
    .feature-content span {
        font-size: 12px;
    }
    
    .program-audience h4 {
        font-size: 13px;
    }
    
    .program-audience p {
        font-size: 12px;
    }
    
    .program-duration p {
        font-size: 12px;
    }
    
    .why-choose-card-new {
        padding: 25px;
    }
    
    .why-choose-icon-new {
        width: 60px;
        height: 60px;
    }
    
    .why-choose-icon-new svg {
        width: 30px;
        height: 30px;
    }
    
    .why-choose-content-new h3 {
        font-size: 18px;
    }
    
    .why-choose-content-new p {
        font-size: 14px;
    }
}

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

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

    .service-card,
    .team-card,
    .project-card {
        padding: 25px;
    }

    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header h2 {
        font-size: 24px;
    }
    
}

/* ============================================
   HOME PAGE - Summary Sections
   ============================================ */

/* About Summary */
.home-about-section {
    padding: 80px 0;
    background: #fff;
}

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

.home-about-text .section-label {
    text-align: left;
}

.home-about-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.home-about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

.home-about-highlights {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.home-highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.highlight-number {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.highlight-text {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.home-about-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Service Pillars */
.home-services-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.home-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.home-pillar-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

.home-pillar-card:nth-child(1) {
    border-top-color: #FFD700;
}

.home-pillar-card:nth-child(2) {
    border-top-color: #1a73e8;
}

.home-pillar-card:nth-child(3) {
    border-top-color: #27ae60;
}

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

.pillar-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 12px;
    margin-bottom: 20px;
    color: #000;
}

.home-pillar-card:nth-child(1) .pillar-icon { background: #fff8e0; }
.home-pillar-card:nth-child(2) .pillar-icon { background: #e8f0fe; }
.home-pillar-card:nth-child(3) .pillar-icon { background: #e8f8ef; }

.home-pillar-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.home-pillar-card > p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.pillar-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.pillar-features li {
    padding: 8px 0;
    font-size: 13px;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}

.pillar-features li:last-child {
    border-bottom: none;
}

.pillar-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 12px;
}

/* Projects Summary */
.home-projects-section {
    padding: 80px 0;
    background: #fff;
}

.home-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.home-project-card {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
    transition: transform 0.3s ease;
}

.home-project-card:hover {
    transform: translateY(-3px);
}

.home-project-tag {
    display: inline-block;
    background: #000;
    color: #FFD700;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 12px;
}

.home-project-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
}

.home-project-scope {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
    font-style: italic;
}

.home-project-card > p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.home-project-results {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home-project-results span {
    display: inline-block;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #444;
}

/* Training Summary */
.home-training-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.home-training-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.home-training-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.home-training-card:hover {
    transform: translateY(-3px);
}

.home-training-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.home-training-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.home-training-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.home-training-audience {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

/* Leadership Preview */
.home-leadership-section {
    padding: 80px 0;
    background: #fff;
}

.home-leaders-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.home-leader-card {
    text-align: center;
    padding: 25px 15px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.home-leader-card:hover {
    transform: translateY(-3px);
}

.home-leader-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid #f0f0f0;
}

.home-leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-leader-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.home-leader-title {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.home-leader-spec {
    font-size: 12px;
    color: #555;
    font-weight: 500;
}

/* Career CTA */
.home-career-section {
    padding: 80px 0;
    background: #1a1a1a;
}

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

.home-career-text .section-label {
    text-align: left;
}

.home-career-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.home-career-text p {
    font-size: 15px;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 25px;
}

.home-career-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.career-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border-left: 3px solid #FFD700;
}

.stat-icon {
    flex-shrink: 0;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

/* Contact CTA */
.home-contact-cta {
    padding: 80px 0;
    background: #f8f8f8;
}

.home-cta-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.home-cta-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.home-cta-wrapper p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.home-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* ============================================
   HOME PAGE - Responsive
   ============================================ */
@media (max-width: 1024px) {
    .home-about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .home-leaders-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .home-about-section,
    .home-services-section,
    .home-projects-section,
    .home-training-section,
    .home-leadership-section,
    .home-career-section,
    .home-contact-cta {
        padding: 60px 0;
    }

    .home-about-highlights {
        flex-direction: row;
        justify-content: space-around;
    }

    .home-pillars-grid {
        grid-template-columns: 1fr;
    }

    .home-projects-grid {
        grid-template-columns: 1fr;
    }

    .home-training-grid {
        grid-template-columns: 1fr;
    }

    .home-leaders-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-career-text h2 {
        font-size: 28px;
    }

    .home-cta-wrapper h2 {
        font-size: 28px;
    }

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

@media (max-width: 480px) {
    .home-about-highlights {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

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

    .home-career-stats {
        gap: 15px;
    }

    .career-stat-item {
        padding: 15px;
    }
}
