@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat Bold';
    src: url('fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* ===== GLOBAL RESPONSIVE SETTINGS ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

/* ===== HERO SECTION - MOBILE RESPONSIVENESS ===== */
.index-hero {
    min-height: 80vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background-image: url(images/home-hero.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 45px;
}

.index-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(26, 16, 30, 0.751), rgba(48, 63, 34, 0.692));
    z-index: 2;
}

.index-hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 80px 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* .index-hero-subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #FCEC9D;
    padding: 8px 16px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Montserrat', 'Argentum Sans', sans-serif;
    border-radius: 5px;
} */

.index-hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 250px 40px 0;
    font-family: 'Montserrat Bold', sans-serif;
    /* Gradient Color */
    background: linear-gradient(to bottom, #f9f9f9 0%, #D3A31C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    /* Fallback for older browsers */
    color: #AA7218;
}

.index-hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 250px 60px 0;
    color: rgb(255, 255, 255);
    font-family: 'Montserrat', sans-serif;
}

.index-hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.index-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 8px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-family: 'Montserrat', 'Argentum Sans', sans-serif;
    text-align: left;
    flex-shrink: 0;
}

.index-hero-btn-primary, 
.index-hero-btn-secondary {
    background: #fff;
    color: #1a101e;
    border: 1px solid #363C4F;
    backdrop-filter: blur(10px);
}

.index-hero-btn-primary:hover,
.index-hero-btn-secondary:hover {
    background: #aa72183c;
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.hero1, .hero2 {
    color: #1a101e;
    font-weight: 550;
    font-family: 'Montserrat Alternates', 'Montserrat', 'Argentum Sans', sans-serif;
    white-space: nowrap;
}

.hero1:hover, .hero2:hover {
    color: #fff;
}

/* Desktop Large */
@media (max-width: 1200px) {
    .index-hero-title {
        font-size: 3rem;
        margin: 0 20px 30px 0;
    }
    
    .index-hero-description {
        margin: 0 20px 40px 0;
        font-size: 1rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .index-hero {
        padding: 0 30px;
        min-height: 35vh;
    }
    
    .index-hero-content {
        padding: 50px 0;
    }
    
    .index-hero-title {
        font-size: 2.8rem;
        margin: 0 20px 25px 0;
    }
    
    .index-hero-description {
        font-size: 1rem;
        margin: 0 20px 35px 0;
        line-height: 1.6;
    }
    
    .index-hero-actions {
        gap: 15px;
    }
    
    .index-hero-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .index-hero {
        padding: 0 20px;
        min-height: 40vh;
        text-align: left;
    }
    
    .index-hero-content {
        padding: 50px 0;
        width: 100%;
    }
    
    .index-hero-subtitle {
        font-size: 0.65rem;
        padding: 6px 14px;
        margin-bottom: 20px;
    }
    
    .index-hero-title {
        font-size: 2.8rem;
        margin: 0 0 20px 0;
        line-height: 1.2;
        text-align: left;
    }
    
    .index-hero-description {
        font-size: 0.95rem;
        margin: 0 0 30px 0;
        line-height: 1.6;
        text-align: left;
    }
    
    .index-hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        width: 100%;
    }
    
    .index-hero-btn {
        /* width: 100%; */
        /* max-width: 300px; */
        padding: 12px 20px;
        font-size: 0.85rem;
        justify-content: center;
        text-align: center;
    }
    
    .hero1, .hero2 {
        white-space: normal;
        display: inline;
    }
}

/* Mobile Large */
@media (max-width: 576px) {
    .index-hero {
        padding: 0 15px;
        min-height: 65vh;
    }
    
    .index-hero-content {
        padding: 40px 0;
    }
    
    .index-hero-subtitle {
        font-size: 0.6rem;
        padding: 5px 12px;
        margin-bottom: 15px;
    }
    
    .index-hero-title {
        font-size: 1.9rem;
        margin: 0 0 15px 0;
    }
    
    .index-hero-description {
        font-size: 0.9rem;
        margin: 0 0 25px 0;
    }
    
    .index-hero-actions {
        gap: 10px;
        width: 100%;
    }
    
    .index-hero-btn {
        width: 100%;
        padding: 11px 18px;
        font-size: 0.8rem;
        justify-content: center;
        text-align: center;
        white-space: normal;
        line-height: 1.4;
    }
    
    .hero1, .hero2 {
        font-size: 0.8rem;
        white-space: normal;
        display: inline;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .index-hero {
        padding: 0 12px;
        min-height: 45vh;
    }
    
    .index-hero-content {
        padding: 35px 0;
    }
    
    .index-hero-title {
        font-size: 1.2rem;
        margin: 0 10px 22px 10px;
        text-align: left;
    }
    
    .index-hero-description {
        font-size: 1rem;
        margin: 0 10px 30px 10px;
        font-weight: 400;
        text-align: left;
    }
    
    .index-hero-btn {
        padding: 10px 15px;
        font-size: 0.75rem;
    }
    
    .hero1, .hero2 {
        font-size: 0.75rem;
    }
    
    .index-hero-btn i {
        font-size: 0.7rem;
    }
}

/* Mobile Extra Small */
@media (max-width: 380px) {
    .index-hero {
        padding: 0 10px;
        min-height: 55vh;
    }
    
    .index-hero-content {
        padding: 30px 0;
    }
    
    .index-hero-title {
        font-size: 1.6rem;
    }
    
    .index-hero-description {
        font-size: 0.8rem;
    }
    
    .index-hero-btn {
        padding: 9px 12px;
        font-size: 0.7rem;
        gap: 6px;
    }
    
    .hero1, .hero2 {
        font-size: 0.7rem;
    }
}

/* Fix for very long CTA text */
@media (max-width: 340px) {
    .index-hero-btn {
        padding: 8px 10px;
        font-size: 0.65rem;
    }
    
    .hero1, .hero2 {
        font-size: 0.65rem;
    }
    
    .index-hero-btn i {
        display: none; /* Hide icons on very small screens */
    }
}

/* ===== VALUE PROPOSITION SECTION - RESPONSIVE ===== */
.index-value-section {
    padding: 100px 45px 0;
    background: #fff;
}

.index-section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.index-section-subtitle {
    display: block;
    color: #363C4F;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: 'Montserrat', 'Argentum Sans', sans-serif;
}

.index-section-title {
    font-size: 2.5rem;
    color: #AA7218;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.index-section-description {
    color: #555555;
    font-size: 1.1rem;
    line-height: 1.3;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.index-value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.index-value-item {
    padding: 20px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: 2px solid #f1f1f1;
}

.index-value-icon {
    margin-bottom: 20px;
}

.index-value-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    background: linear-gradient(135deg, #363C4F, #AA7218);
}

.index-value-title {
    font-size: 1.3rem;
    color: #363C4F;
    margin-bottom: 15px;
    font-weight: 700;
}

.index-value-text {
    color: #000;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Tablet View */
@media (max-width: 992px) {
    .index-value-section {
        padding: 80px 20px 0;
    }
    
    .index-section-title {
        font-size: 2.2rem;
    }
    
    .index-value-grid {
        gap: 25px;
    }
    
    .index-value-item {
        padding: 25px 18px;
    }
}

/* Mobile Tablet */
@media (max-width: 768px) {
    .index-value-section {
        padding: 60px 15px 0;
    }
    
    .index-value-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .index-section-title {
        font-size: 1.9rem;
    }
    
    .index-section-description {
        font-size: 1rem;
    }
    
    .index-value-item {
        padding: 20px 15px;
    }
    
    .index-value-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .index-value-title {
        font-size: 1.2rem;
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    .index-value-section {
        padding: 40px 0 0;
    }
    
    .index-section-title {
        font-size: 1.5rem;
    }
    
    .index-section-subtitle {
        font-size: 0.9rem;
    }
    
    .index-section-description {
        font-size: 1rem;
    }
    
    .index-value-title {
        font-size: 1.1rem;
    }
    
    .index-value-text {
        font-size: 0.9rem;
    }
    
    .index-value-grid {
        gap: 15px;
    }
}

/* ===== INDUSTRIES SECTION - RESPONSIVE ===== */
.index-industries-section {
    padding: 100px 0;
    background: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.index-section-header1 {
    background: linear-gradient(to right, #363C4F, #000);
    padding: 30px 0;
    text-align: center;
    margin-bottom: 40px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.index-section-subtitle2 {
    display: block;
    color: #AA7218;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.index-section-title2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.index-section-description2 {
    color: #f1f1f1b7;
    font-size: 1.1rem;
    line-height: 1.3;
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0 20px;
}

.index-industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 auto;
    padding: 0 20px;
}

.index-industry-item {
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #002a38;
    border-radius: 10px;
}

.index-industry-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.index-industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.index-industry-item:hover .index-industry-image img {
    transform: scale(1.05);
}

.index-industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.785), transparent);
}

.index-industry-content {
    padding: 20px;
    background: white;
}

.index-industry-title {
    font-size: 1.2rem;
    color: #1a101e;
    margin-bottom: 10px;
    font-weight: 600;
}

.index-industry-description {
    color: #555555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.index-industry-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #AA7218;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.index-industry-link:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-style: dotted;
    text-underline-offset: 5px;
    text-decoration-color: #002a38;
}

.index-industries-viewall {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.index-viewall-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
}

.index-viewall-btn:hover {
    background: #363C4F;
}

/* Tablet View */
@media (max-width: 992px) {
    .index-industries-section {
        padding: 80px 0;
    }
    
    .index-section-title2 {
        font-size: 2.2rem;
        padding: 0 15px;
    }
    
    .index-industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
    
    .index-section-description2 {
        padding: 0 15px;
        font-size: 1rem;
    }
    
    .index-industry-image {
        height: 180px;
    }
}

/* Mobile Tablet */
@media (max-width: 768px) {
    .index-industries-section {
        padding: 60px 0;
    }
    
    .index-section-header1 {
        padding: 25px 0;
        margin-bottom: 30px;
    }
    
    .index-section-title2 {
        font-size: 1.9rem;
        padding: 0 12px;
    }
    
    .index-section-description2 {
        font-size: 0.95rem;
        padding: 0 12px;
    }
    
    .index-industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 12px;
    }
    
    .index-industry-image {
        height: 160px;
    }
    
    .index-industry-content {
        padding: 15px;
    }
    
    .index-industries-viewall {
        padding: 0 12px;
        margin-top: 30px;
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    .index-industries-section {
        padding: 50px 0;
    }
    
    .index-section-title2 {
        font-size: 1.6rem;
        padding: 0 12px;
    }
    
    .index-section-subtitle2 {
        font-size: 0.8rem;
    }
    
    .index-industry-title {
        font-size: 1.1rem;
    }
    
    .index-industry-description {
        font-size: 0.85rem;
    }
    
    .index-viewall-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .index-industries-grid {
        gap: 15px;
        padding: 0 0px;
    }
    
    .index-industry-image {
        height: 150px;
    }
}

/* Small Mobile Phones */
@media (max-width: 400px) {
    .index-section-title2 {
        font-size: 1.4rem;
    }
    
    .index-industry-image {
        height: 140px;
    }
}

/* ===== WHY CHOOSE US SECTION - RESPONSIVE ===== */
.why-world {
    position: relative;
    padding: 100px 45px;
    background-image: url(images/home2.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Montserrat', 'Argentum Sans', sans-serif;
    overflow: hidden;
}

.why-world::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #363c4fea;
    z-index: 1;
}

.why-world > * {
    position: relative;
    z-index: 2;
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.why-content {
    padding-right: 20px;
}

.why-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #ffffffcc;
    margin-bottom: 16px;
    padding: 8px 13px;
    background: #00000049;
    border: 1px solid #000;
}

.why-content h2 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 800;
    color: #AA7218;
    margin-bottom: 20px;
    font-family: "Montserrat Bold", "Montserrat";
}

.why-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffffcc;
    margin-bottom: 25px;
    font-weight: 400;
    text-align: left;
}

.why-trust {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 25px;
}

.why-trust h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #AA7218;
}

.trust-reasons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid #AA7218;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.trust-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #AA7218, #363C4F);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
}

.trust-content {
    flex: 1;
}

.trust-content h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.trust-content p {
    font-size: 0.85rem;
    color: #ffffffcc;
    line-height: 1.5;
    margin: 0;
}

/* Tablet View */
@media (max-width: 992px) {
    .why-world {
        padding: 80px 20px;
    }
    
    .why-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-content {
        padding-right: 0;
    }
    
    .why-content h2 {
        font-size: 2.2rem;
    }
    
    .why-trust h3 {
        font-size: 1.6rem;
    }
}

/* Mobile Tablet */
@media (max-width: 768px) {
    .why-world {
        padding: 60px 15px;
    }
    
    .why-content h2 {
        font-size: 1.9rem;
    }
    
    .why-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .why-trust {
        padding: 20px;
    }
    
    .why-trust h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .trust-reasons {
        gap: 15px;
    }
    
    .trust-item {
        padding: 12px;
        gap: 10px;
    }
    
    .trust-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 0.9rem;
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    .why-world {
        padding: 50px 15px;
    }
    
    .why-content h2 {
        font-size: 1.7rem;
    }
    
    .why-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .why-trust h3 {
        font-size: 1.3rem;
    }
    
    .trust-content h4 {
        font-size: 0.95rem;
    }
    
    .trust-content p {
        font-size: 0.8rem;
    }
    
    .trust-item {
        padding: 10px;
    }
}

/* ===== PROJECTS SECTION - RESPONSIVE ===== */
.index-projects-section {
    padding: 100px 45px;
    background: #f8f9fa;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.index-projects-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.index-project-main {
    background: #363C4F;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 400px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
}

.index-project-image {
    position: relative;
    overflow: hidden;
}

.index-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.index-project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #363C4F;
    color: #fff;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.index-project-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.index-project-title {
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.index-project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.index-project-industry,
.index-project-duration,
.index-project-scale {
    font-size: 0.9rem;
    font-weight: 500;
    color: #f1f1f185;
    border-left: 4px solid #AA7218;
    padding-left: 8px;
}

.index-project-description {
    color: #f1f1f185;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.index-project-results {
    display: block;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.index-project-result {
    text-align: left;
    padding: 5px 10px;
    border-left: 4px solid #AA7218;
    border-top: 1px solid #AA7218;
    border-bottom: 1px solid #AA7218;
    border-radius: 5px;
    margin-bottom: 10px;
}

.index-result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.index-result-label {
    display: block;
    font-size: 0.75rem;
    color: #f1f1f185;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.index-project-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FCEC9D;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 20px;
    background: rgba(170, 114, 24, 0.3);
    border-radius: 6px;
    border: 1px solid rgba(170, 114, 24, 0.3);
    max-width: 200px;
    margin-top: 10px;
}

.index-project-cta:hover {
    background: #D3A31C;
    border-color: rgba(170, 114, 24, 0.5);
}

.index-projects-minor {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.index-project-minor {
    background: #6d81aa48;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.index-project-minor-image {
    height: 150px;
    overflow: hidden;
}

.index-project-minor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.index-project-minor-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.index-project-minor-content h4 {
    font-size: 1rem;
    color: #1a101e;
    margin-bottom: 10px;
    font-weight: 600;
}

.index-project-minor-content p {
    color: #555555;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.index-project-minor-link {
    color: #AA7218;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(170, 114, 24, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(170, 114, 24, 0.2);
    align-self: flex-start;
}

.index-project-minor-link:hover {
    background: rgba(170, 114, 24, 0.2);
    border-color: rgba(170, 114, 24, 0.4);
}

.index-projects-viewall {
    text-align: center;
    margin-top: 40px;
}

.index-viewall-btn-alt {
    background: transparent;
    color: #363C4F;
    border: 2px solid #363C4F;
}

.index-viewall-btn-alt:hover {
    background: #363C4F;
    color: white;
    border-color: #363C4F;
}

/* Tablet View */
@media (max-width: 992px) {
    .index-projects-section {
        padding: 80px 20px;
    }
    
    .index-projects-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .index-project-main {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .index-project-title {
        font-size: 1.5rem;
    }
    
    .index-project-results {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Tablet */
@media (max-width: 768px) {
    .index-projects-section {
        padding: 60px 15px;
    }
    
    .index-project-title {
        font-size: 1.4rem;
    }
    
    .index-project-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .index-project-content {
        padding: 15px;
    }
    
    .index-project-results {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .index-result-value {
        font-size: 1.3rem;
    }
    
    .index-project-minor-image {
        height: 130px;
    }
    
    .index-projects-minor {
        gap: 15px;
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    .index-projects-section {
        padding: 50px 0px;
    }
    
    .index-project-title {
        font-size: 1.3rem;
    }
    
    .index-project-description {
        font-size: 0.9rem;
    }
    
    .index-project-cta {
        font-size: 0.85rem;
        padding: 6px 15px;
        width: 100%;
        max-width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .index-project-minor-content h4 {
        font-size: 0.95rem;
    }
    
    .index-project-minor-content p {
        font-size: 0.8rem;
    }
    
    .index-projects-viewall {
        margin-top: 30px;
    }
}

/* ===== SERVICES SECTION - RESPONSIVE ===== */
.index-services-section {
    padding: 100px 45px;
    position: relative;
    overflow: hidden;
}

.index-services-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/about-mission.webp') center center/cover no-repeat;
    z-index: 1;
}

.index-services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, #000000ec, #363c4ff1, #363c4ff1, #363c4ff1, #363c4ff1, #ffffff37);
    z-index: 2;
}

.index-services-section .container {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
}

.index-services-process {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.index-process-step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 15px 0 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.index-process-step:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #AA7218;
    box-shadow: 0 8px 25px rgba(170, 114, 24, 0.15);
}

.index-step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #AA7218;
    line-height: 1;
    min-width: 50px;
    margin-bottom: 10px;
}

.index-step-content {
    flex: 1;
}

.index-step-title {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.index-process-step:hover .index-step-title {
    color: #FCEC9D;
}

.index-step-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.index-services-cta {
    text-align: center;
    margin-top: 40px;
}

.index-services-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #AA7218;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #AA7218;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.index-services-btn:hover {
    background: transparent;
    color: #fff;
    border-color: #363C4F;
    background: #363C4F;
}

/* Tablet View */
@media (max-width: 992px) {
    .index-services-section {
        padding: 80px 20px;
    }
    
    .index-services-process {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .index-step-number {
        min-width: 45px;
        font-size: 1.8rem;
    }
}

/* Mobile Tablet */
@media (max-width: 768px) {
    .index-services-section {
        padding: 60px 15px;
    }
    
    .index-process-step {
        padding: 15px;
        gap: 12px;
    }
    
    .index-step-title {
        font-size: 1rem;
    }
    
    .index-step-description {
        font-size: 0.85rem;
    }
    
    .index-services-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .index-services-cta {
        margin-top: 30px;
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    .index-services-section {
        padding: 50px 12px;
    }
    
    .index-step-number {
        font-size: 1.6rem;
        min-width: 40px;
    }
    
    .index-step-title {
        font-size: 0.95rem;
    }
    
    .index-step-description {
        font-size: 0.8rem;
    }
}

/* ===== TESTIMONIALS SECTION - RESPONSIVE ===== */
.testimonials {
    background: #363C4F;
    padding: 80px 45px 60px;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.testimonials-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.testimonials-intro {
    position: relative;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: #D3A31C;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.testimonials-intro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.2;
}

.testimonials-intro p {
    font-size: 1rem;
    line-height: 1.6;
    color: #cfd9e6;
    margin-bottom: 20px;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease;
    will-change: transform;
    padding: 10px 0;
}

/* Show 3 testimonials at a time on desktop */
.testimonial-card {
    background: #ffffff;
    color: #222;
    width: calc((100% - 20px) / 2); /* 2 cards with gap */
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.testimonial-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 180px);
}

.card-quote {
    font-size: 24px;
    color: #AA7218;
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    line-height: 1;
}

.card-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
    flex-grow: 1;
}

.card-content h4 {
    font-size: 1rem;
    margin: 0 0 5px;
    color: #D3A31C;
    font-weight: 600;
}

.card-content span {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    display: block;
    margin-bottom: 5px;
}

.testimonial-date {
    font-size: 0.75rem;
    color: #999;
    font-style: normal;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

/* Tablet View - Show 2 testimonials */
@media (max-width: 992px) {
    .testimonials {
        padding: 60px 20px 40px;
    }
    
    .testimonials-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-intro {
        text-align: center;
    }
    
    .quote-icon {
        margin: 0 auto 20px;
    }
    
    .testimonial-card {
        width: calc((100% - 20px) / 2); /* 2 cards with gaps */
    }
    
    .testimonials-intro h2 {
        font-size: 1.8rem;
    }
}

/* Mobile Tablet - Show 1 testimonial */
@media (max-width: 768px) {
    .testimonials {
        padding: 50px 15px 30px;
    }
    
    .testimonials-intro h2 {
        font-size: 1.6rem;
    }
    
    .testimonials-intro p {
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        width: 100%; /* 1 card full width */
    }
    
    .testimonial-card img {
        height: 160px;
    }
    
    .card-content p {
        font-size: 0.85rem;
        min-height: 100px;
    }
    
    .testimonial-controls {
        gap: 20px;
        margin-top: 25px;
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    .testimonials {
        padding: 40px 12px 25px;
    }
    
    .quote-icon {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .testimonials-intro h2 {
        font-size: 1.4rem;
    }
    
    .testimonials-intro p {
        font-size: 0.85rem;
    }
    
    .testimonial-card img {
        height: 140px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .card-content p {
        min-height: 120px;
        font-size: 0.8rem;
    }
    
    .testimonial-controls {
        gap: 15px;
    }
    
    .prev-btn, .next-btn {
        width: 35px;
        height: 35px;
    }
    
    .card-quote {
        font-size: 20px;
    }
    
    .card-content h4 {
        font-size: 0.9rem;
    }
    
    .card-content span {
        font-size: 0.8rem;
    }
}

/* ===== CTA SECTION - RESPONSIVE ===== */
.index-cta-section {
    padding: 100px 45px;
    background: #fff;
    color: #000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.index-cta-content {
    text-align: center;
    margin: 0 auto;
    max-width: 1200px;
}

.index-cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #002a38;
}

.index-cta-description {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.index-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.index-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    min-width: 180px;
    justify-content: center;
}

.index-cta-btn-primary {
    background: #AA7218;
    color: white;
}

.index-cta-btn-primary:hover {
    background: #8a5a14;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.index-cta-btn-secondary {
    background: #363C4F;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.index-cta-btn-secondary:hover {
    background: #2a3040;
    border-color: #2a3040;
}

.index-cta-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.index-cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.index-cta-feature i {
    color: #AA7218;
}

/* Tablet View */
@media (max-width: 992px) {
    .index-cta-section {
        padding: 80px 20px;
    }
    
    .index-cta-title {
        font-size: 2.2rem;
    }
    
    .index-cta-description {
        font-size: 1.05rem;
    }
    
    .index-cta-actions {
        gap: 15px;
    }
}

/* Mobile Tablet */
@media (max-width: 768px) {
    .index-cta-section {
        padding: 60px 15px;
    }
    
    .index-cta-title {
        font-size: 1.9rem;
    }
    
    .index-cta-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .index-cta-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .index-cta-btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 20px;
    }
    
    .index-cta-features {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    .index-cta-section {
        padding: 50px 12px;
    }
    
    .index-cta-title {
        font-size: 1.7rem;
    }
    
    .index-cta-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .index-cta-btn {
        font-size: 0.9rem;
        padding: 10px 15px;
        min-width: auto;
    }
    
    .index-cta-feature {
        font-size: 0.85rem;
    }
    
    .index-cta-actions {
        gap: 10px;
    }
}

/* ===== TESTIMONIALS MODAL - RESPONSIVE ===== */
.testimonial-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.testimonial-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: #363C4F;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #FCEC9D;
}

#testimonialForm {
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #363C4F;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.8rem;
}

.submit-btn {
    background: #AA7218;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #8a5a14;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Add Testimonial Button */
.add-testimonial-btn {
    background: #D3A31C;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.add-testimonial-btn:hover {
    background: #b38715;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 163, 28, 0.3);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .testimonial-modal {
        padding: 15px;
    }
    
    .modal-content {
        max-width: 95%;
        margin: 0 auto;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    #testimonialForm {
        padding: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 8px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .testimonial-modal {
        padding: 10px;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .close-modal {
        font-size: 1.5rem;
        width: 25px;
        height: 25px;
    }
    
    .submit-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .add-testimonial-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
}

/* Loading, Error, and Empty States */
.loading-testimonial {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: white;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
}

.loading-testimonial i {
    margin-right: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.message {
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
    font-size: 0.9rem;
    text-align: center;
}

.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.empty-testimonials {
    text-align: center;
    padding: 40px;
    color: white;
    width: 100%;
}

.empty-testimonials h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.empty-testimonials p {
    margin-bottom: 20px;
    color: #cfd9e6;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #002a38 0%, #00141e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.testimonials-intro {
    flex: 1;
    min-width: 300px;
}

.testimonials-intro .quote-icon {
    font-size: 5rem;
    color: #AA7218;
    font-family: Georgia, serif;
    line-height: 0.8;
    margin-bottom: 1rem;
}

.testimonials-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.testimonials-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.add-testimonial-btn {
    background: linear-gradient(135deg, #AA7218 0%, #D3A31C 100%);
    color: white;
    border: none;
    padding: 10px 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.add-testimonial-btn:hover {
    /* transform: translateY(-2px); */
    box-shadow: 0 10px 20px rgba(170, 114, 24, 0.3);
    background: linear-gradient(135deg, #D3A31C 0%, #AA7218 100%);
}

/* Slider Styles */
.testimonials-slider {
    flex: 2;
    min-width: 300px;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.testimonials-slide {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    flex-shrink: 0;
    padding: 0.5rem;
}

.testimonial-card {
    flex: 1;
    min-width: calc(33.333% - 1rem);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    /* padding: 2rem; */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(170, 114, 24, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    /* border-radius: 5px; */
    object-fit: cover;
    /* border: 1px solid #AA7218; */
    align-self: center;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-quote {
    font-size: 3rem;
    color: #AA7218;
    font-family: Georgia, serif;
    line-height: 0.8;
    margin-bottom: 1rem;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.card-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.card-content span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.testimonial-date {
    font-size: 0.8rem;
    color: #AA7218;
    font-weight: 500;
}

/* Loading and Error States */
.loading-testimonial,
.error,
.empty-testimonials {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    width: 100%;
}

.loading-testimonial i {
    font-size: 2rem;
    color: #AA7218;
    margin-bottom: 1rem;
}

.error h3,
.empty-testimonials h3 {
    color: white;
    margin-bottom: 1rem;
}

.error p,
.empty-testimonials p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.retry-btn {
    background: #AA7218;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.retry-btn:hover {
    background: #D3A31C;
}

/* Navigation Controls */
.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.prev-btn,
.next-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: #AA7218;
    border-color: #AA7218;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #AA7218;
    transform: scale(1.2);
}

/* Modal Styles */
.testimonial-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(135deg, #002a38 0%, #00141e 100%);
    border: 1px solid rgba(170, 114, 24, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    color: white;
    font-size: 1.8rem;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #AA7218;
    transform: scale(1.1);
}

/* Form Styles */
#testimonialForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #AA7218;
    background: rgba(255, 255, 255, 0.15);
}

.form-group small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.submit-btn {
    background: linear-gradient(135deg, #AA7218 0%, #D3A31C 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover:not(:disabled) {
    /* transform: translateY(-2px); */
    box-shadow: 0 10px 20px rgba(170, 114, 24, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Message Styles */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
    display: none;
}

.message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #F44336;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-inner {
        flex-direction: column;
    }
    
    .testimonials-slide {
        gap: 1rem;
    }
    
    .testimonial-card {
        min-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 1rem;
    }
    
    .testimonials-intro h2 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-controls {
        gap: 1rem;
    }
    
    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
    }
}