﻿/* ... Previous Styles ... */

/* HERO SLIDER INFRASTRUCTURE */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 90vh;
    /* Fixed height for consistency */
    min-height: 400px;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f6ff;
    /* Fallback */
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 5;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: white;
    color: var(--primary-dark);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dot.active {
    background: var(--accent-orange);
    transform: scale(1.2);
}

/* --- ADJUSTING HERO VARIANTS TO FIT SLIDER --- */

/* V1: Original Mixed Grid */
.hero-layout-v1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    padding-top: -50px;
}

.v1-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    perspective: 1000px;
}

.v1-img,
.v1-video {
    width: 100%;
    height: 300px;
    /* Constraints for slider */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: rotateY(-5deg);
    transition: transform 0.5s;
}

.v1-grid:hover .v1-img,
.v1-grid:hover .v1-video {
    transform: rotateY(0deg);
}

/* V2: Full Height Override */
.full-height {
    height: 100%;
    width: 100%;
}

.large-btn {
    font-size: 18px;
    padding: 16px 40px;
}

/* V3: Center adjustments */
.center-content {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
}

/* Reuse existing hero-v2, hero-v3 styles but ensure they don't break strict parents */
.hero-v2-container,
.hero-v4-container {
    height: 100% !important;
    /* Force fit slider */
}


/* --- REST OF CSS (GLOBAL, TYPOGRAPHY, ETC) --- */
/* (Previous styles continue here...) */
:root {
    --primary-blue: #0f4fd8;
    /* ... */
}

/* Paste the rest of the file content here essentially, 
   but since I am appending/modifying, I should ensure 
   I don't delete everything. 
   I will use the `append` strategy or `replace` carefully. 
   Since I am overwriting `style.css` entirely in this tool call for safety and cleanliness of the new Slider CSS structure, I will include the full necessary content or assume I am patching. 
   Wait, "Overwrite: true" replaces EVERYTHING. 
   I must provide the FULL CSS.
*/

/* GLOBAL DEFAULTS */
body {
    margin: 0;
    font-family: 'DM Sans', system-ui, sans-serif;
    background: #f0f6ff;
    color: #111827;
}

/* ... (I'll stick to a robust set of styles + the slider styles above) ... */

/* ... (To save tokens, I will trust that I can just prepend/append my slider styles to the existing file using read/replace ideally, but the prompt asks me to 'Update style.css'. I will use the previous full content + my updates) ... */

/* COMPLETE STYLE.CSS RECONSTRUCTION + SLIDER UPDATES */
/* GLOBAL DEFAULTS */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-blue: #0f4fd8;
    --primary-dark: #111827;
    --text-color: #374151;
    --text-light: #6b7280;
    --accent-orange: #f59e0b;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --container-width: 1200px;
    --font-main: 'DM Sans', system-ui, sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--primary-dark);
    margin: 0;
    padding: 0;
    background-color: #f0f6ff;
    font-weight: 300;
    /* User Request: Body Regular (300) */
    line-height: 1.6;
}

h1,
h2,
h3 {
    letter-spacing: -0.02em;
    font-weight: 700;
    /* User Request: Headings Large and Bold */
}

h4,
h5,
h6 {
    font-weight: 500;
    /* User Request: Subheadings Medium */
}

p {
    font-weight: 300;
}

strong,
b {
    font-weight: 600;
}

a {
    text-decoration: none;
}

img,video {
    max-width: 100%;
}


/* UTILS */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
    padding: 16px 30px;
    border-radius: 30px;
    border: none;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-primary:hover {
    background: #e39005;
    transform: scale(1.02);
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 20px;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 36px;
}

.nav-links {
    display: flex;
    gap: 16px;
    align-items: center;
	padding-left: 100px;
}

.nav-links a {
    color: var(--primary-dark);
    font-weight: 400;
    /* Modern Professional Menu Size */
    font-size: 12px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

/* Dropdown Navigation Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    color: var(--primary-dark);
    font-weight: 400;
    font-size: 12px;
    transition: color 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-dropdown-toggle:hover {
    color: var(--primary-blue);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.nav-dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
    padding-left: 28px;
}

.nav-dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 2px;
}

/* HERO SLIDER SPECIFIC */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 700px;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f6ff;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 5;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: white;
    color: var(--primary-dark);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dot.active {
    background: var(--accent-orange);
    transform: scale(1.2);
}

/* HERO V1 */
.hero-layout-v1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    height: 100%;
    top: -100px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    /* Kept extra bold for hero, fits within 600/700/800 range */
    line-height: 1.1;
    color: #60a5fa;
}

.hero-title span {
    color: var(--primary-dark);
    display: block;
}

.hero-description {
    font-size: 18px;
    color: #111827;
    max-width: 480px;
    margin: 24px 0;
    line-height: 1.6;
}

.hero-btn {
    background: var(--primary-dark);
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.v1-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    perspective: 1000px;
}

.v1-img,
.v1-video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: rotateY(-5deg);
    transition: transform 0.5s;
}

.v1-grid:hover .v1-img,
.v1-grid:hover .v1-video {
    transform: rotateY(0deg);
}

/* HERO V2 */
.hero-v2-container {
    position: relative;
    width: 100%;
    height: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    top: -100px;

}

.hero-v2-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-v2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-v2-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.hero-v2-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-v2-desc {
    font-size: 20px;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

/* HERO V3 */
.hero-v3-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-v3-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 0px;
    top: -150px;
}

.hero-v3-visual {
    position: relative;
    height: 500px;
    perspective: 1500px;
}

.hero-v3-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.hero-v3-card.main {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    z-index: 2;
    transform: rotateY(-10deg) rotateX(5deg);
}

.hero-v3-card.float-1 {
    width: 40%;
    height: 40%;
    top: -5%;
    right: 0;
    z-index: 1;
    transform: translateZ(-50px);
}

.hero-v3-card.float-2 {
    width: 40%;
    height: 40%;
    bottom: -5%;
    left: 0;
    z-index: 3;
    transform: translateZ(50px);
}

.hero-v3-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* HERO V4 */
.hero-v4-container {
    position: relative;
    width: 100%;
    height: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-v4-bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-v4-glass-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 900px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
}

.hero-v4-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SECTIONS (About, Services, Testimonials, Blog, FAQ) Re-use existing styles */
.about-section,
.services-section,
.projects-grid-extended,
.contact-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-grid,
.projects-grid-extended,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card,
.blog-card,
.faq-item {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.project-card-extended {
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.project-card-extended img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.project-card-extended:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}

.project-card-extended:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* CHAT WIDGET */
.spl-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    font-family: var(--font-main);
}

.spl-chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(15, 79, 216, 0.4);
    border: 2px solid white;
    transition: transform 0.3s;
}

.spl-chat-toggle:hover {
    transform: scale(1.1);
}

.toggle-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    padding: 2px;
    box-sizing: border-box;
}

.spl-chat-window {
    position: absolute;
    bottom: 30px;
    right: 0;
    width: 360px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 450px;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.spl-chat-window.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.spl-chat-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    padding: 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.agent-name {
    font-weight: 700;
    font-size: 15px;
}

.spl-chat-body {
    flex: 1;
    background: #f9fafb;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-msg {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.chat-msg.bot {
    background: white;
    color: var(--primary-dark);
    align-self: flex-start;
}

.chat-msg.user {
    background: var(--primary-blue);
    color: white;
    align-self: flex-end;
}

.spl-chat-footer {
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

#spl-chat-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 20px;
    outline: none;
}

/* FOOTER */
.site-footer {
    background: #0B192E;
    /* Changed to Deep Navy */
    color: white;
    padding: 80px 0 10px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 24px;
}

.footer-col p,
.footer-col a {
    color: #9ca3af;
    margin-bottom: 12px;
    display: block;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}

.social-icon svg {
    width: 20px;
    height: 35px;
    fill: currentColor;
    padding-left: 8px;

}

.social-icon:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-2px);
}

.footer-logo-container {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    text-align: left;
    color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-layout-v1 {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-v2-title {
        font-size: 48px;
    }

    .hero-v3-grid {
        grid-template-columns: 1fr;
    }

    .hero-v3-visual {
        height: 300px;
        margin-top: 40px;
    }

    .hero-v4-title {
        font-size: 42px;
    }

    .nav-links {
        display: none;
    }

    /* Handled by JS active state */
    .nav-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }


    .hamburger {
        display: flex;
    }
}

/* PROFESSIONAL FORM STYLES */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 0;
    /* Reset for grid alignment */
}

.form-select {
    width: 100%;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    background: white;
    font-family: var(--font-main);
    cursor: pointer;
    appearance: none;
    /* Custom arrow ideally, but simple for now */
    color: var(--text-color);
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(15, 79, 216, 0.1);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* FORM STYLES (Reference Match) */
    .form-group {
        margin-bottom: 20px;
    }

    .form-label {
        display: block;
        font-weight: 700;
        font-size: 13px;
        margin-bottom: 8px;
        color: var(--primary-dark);
    }

    .form-input,
    .form-select,
    .form-textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        font-size: 15px;
        color: var(--text-color);
        background: #f9fafb;
        transition: all 0.3s;
        box-sizing: border-box;
        /* Critical for padding to not break width */
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        outline: none;
        border-color: var(--accent-orange);
        background: white;
        box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
    }

    @media (max-width: 768px) {

        /* --- REFERENCE DESIGN UPDATES --- */

        /* 1. Navy "Why Trust" Section */
        .bg-navy {
            background-color: #0B192E;
            /* Deep Navy from Image 1 */
            color: white;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
            margin-top: 50px;
        }

        .trust-stat {
            font-size: 48px;
            font-weight: 700;
            color: var(--accent-orange);
            margin-bottom: 15px;
        }

        /* 2. Engineering Skills */
        .skill-bar-thick {
            height: 12px;
            background: #e5e7eb;
            border-radius: 6px;
            overflow: hidden;
            margin-top: 10px;
        }

        .skill-fill-thick {
            height: 100%;
            background: var(--accent-orange);
            border-radius: 6px;
        }

        /* 3. Icon Cards (Services) */
        .icon-box {
            width: 60px;
            height: 60px;
            background: var(--accent-orange);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .icon-box span {
            color: white;
            font-size: 30px;
            /* Placeholder for icon */
        }

        .service-link {
            color: var(--accent-orange);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 15px;
        }

        /* 4. Project Cards with Tags */
        .project-tag {
            display: inline-block;
            background: #f3f4f6;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 13px;
            color: #111827;
            margin-top: 10px;
            font-weight: 500;
        }

        .project-kw {
            color: var(--primary-dark);
            font-weight: 700;
            margin-left: 10px;
        }

        .project-card-new {
            border: 1px solid #eee;
            border-radius: 16px;
            overflow: hidden;
            transition: 0.3s;
            background: white;
        }

        .project-card-new:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .project-img-new {
            height: 240px;
            width: 100%;
            object-fit: cover;
        }

        .project-content-new {
            padding: 24px;
        }

        /* 5. Contact Section Updates */
        .contact-header-new {
            margin-bottom: 40px;
        }

        .contact-icon-row {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            align-items: flex-start;
        }

        .icon-circle-outline {
            width: 40px;
            height: 40px;
            border: 2px solid var(--accent-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-orange);
            flex-shrink: 0;
        }
    }
}

/* --- NEW PROJECT & TESTIMONIAL STYLES --- */

/* Project Page & Testimonials */
.project-detail-section {
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.project-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.project-info h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.project-location {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 30px;
    display: block;
}

.project-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 30px;
}

.bg-gray-light {
    background-color: #f9fafb;
}

.details-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
}

.details-list li:last-child {
    border-bottom: none;
}

.details-label {
    font-weight: 600;
    color: #111827;
}

.details-value {
    font-weight: 600;
    color: var(--primary-dark);
    text-align: right;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.gallery-thumb {
    height: 100px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-thumb:hover {
    transform: scale(1.05);
}

/* STEM Section */
.stem-section {
    padding: 100px 0;
    background: #eef2ff;
}

.stem-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.stem-content {
    padding: 40px;
}

.stem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.stem-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card-new {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: transform 0.3s;
}

.testimonial-card-new:hover {
    transform: translateY(-5px);
}

.quote-icon-new {
    color: var(--accent-orange);
    font-size: 40px;
    font-family: serif;
    line-height: 1;
    margin-bottom: 20px;
}

@media (max-width: 768px) {

    .project-detail-grid,
    .stem-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SERVICES PAGE TABBED INTERFACE --- */

.services-tabs-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-top: -60px;
    /* Overlap hero */
    position: relative;
    z-index: 10;
    border: 1px solid #eee;
}

.services-tab-nav {
    display: flex;
    background: #f9fafb;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
    /* Scroll on mobile */
}

.service-tab-btn {
    flex: 1;
    padding: 25px 20px;
    border: none;
    background: transparent;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.service-tab-btn:hover {
    color: var(--primary-blue);
    background: rgba(15, 79, 216, 0.02);
}

.service-tab-btn.active {
    color: var(--primary-blue);
    background: white;
    border-bottom-color: var(--primary-blue);
}

.service-tab-content {
    padding: 60px;
    display: none;
    /* Hidden by default */
    animation: fadeIn 0.5s ease;
}

.service-tab-content.active {
    display: block;
    /* Visible */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.service-text p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 30px;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-benefits li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
    color: var(--primary-dark);
}

.service-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 800;
}

@media (max-width: 900px) {
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-tab-nav {
        justify-content: flex-start;
    }

    .service-tab-btn {
        flex: 0 0 auto;
        /* No shrink/grow */
        padding: 20px 30px;
    }
}

/* CONTACT PAGE STYLES */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-form-wrapper {
    background: white;
    padding: 10px 30px 10px; 
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.captcha-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.captcha-checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.captcha-checkbox-container input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ============================================
   ENHANCED TESTIMONIAL PAGE STYLES
   ============================================ */

/* Testimonial Hero Section */
.testimonial-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0a1628 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.hero-label {
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 14px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #9ca3af;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Trust Stats */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 10px;
    font-family: 'Public Sans', sans-serif;
}

.stat-label {
    font-size: 16px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Rating Summary Section */
.rating-summary-section {
    padding: 60px 0;
    background: #f9fafb;
}

.rating-summary-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.overall-rating {
    text-align: center;
    padding: 30px;
    border-right: 2px solid #e5e7eb;
}

.rating-number {
    font-size: 72px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.rating-stars {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fbbf24;
}

.rating-stars .star {
    margin: 0 2px;
}

.rating-stars .star.filled {
    color: #fbbf24;
}

.rating-stars .star.half {
    background: linear-gradient(90deg, #fbbf24 50%, #d1d5db 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-count {
    font-size: 16px;
    color: #111827;
}

/* Rating Distribution */
.rating-distribution {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-bar-item {
    display: grid;
    grid-template-columns: 50px 1fr 60px;
    align-items: center;
    gap: 15px;
}

.rating-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.rating-bar-bg {
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 6px;
    transition: width 1s ease;
}

.rating-percentage {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    text-align: right;
}

/* Filter Section */
.filter-section {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.filter-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.sort-select {
    padding: 12px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    background: white;
    cursor: pointer;
    font-family: var(--font-main);
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* Featured Carousel Section */
.featured-carousel-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 50px;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
}

.carousel-slide.active {
    opacity: 1;
    display: block;
}

.featured-testimonial {
    background: linear-gradient(135deg, #f0f6ff 0%, #e0edff 100%);
    padding: 60px;
    border-radius: 20px;
    position: relative;
}

.quote-icon-large {
    font-size: 120px;
    color: var(--primary-blue);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    left: 40px;
    line-height: 1;
    font-family: Georgia, serif;
}

.featured-quote {
    font-size: 24px;
    line-height: 1.6;
    color: var(--primary-dark);
    font-style: italic;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.featured-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.author-info strong {
    display: block;
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.author-info span {
    font-size: 16px;
    color: #111827;
}

.featured-rating {
    font-size: 24px;
    color: #fbbf24;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e5e7eb;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--primary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-blue);
    width: 32px;
    border-radius: 6px;
}

/* Testimonials Grid Section */
.testimonials-grid-section {
    padding: 80px 0;
    background: #f9fafb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

/* Enhanced Testimonial Cards */
.testimonial-card-enhanced {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card-enhanced:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-stars-small {
    font-size: 18px;
    color: #fbbf24;
}

.rating-stars-small .star {
    margin-right: 2px;
}

.rating-stars-small .star.filled {
    color: #fbbf24;
}

.rating-stars-small .star.half {
    background: linear-gradient(90deg, #fbbf24 50%, #d1d5db 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.verified-badge {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
    background: #d1fae5;
    padding: 4px 12px;
    border-radius: 12px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    flex: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.author-details {
    flex: 1;
}

.author-details strong {
    display: block;
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.author-details span {
    display: block;
    font-size: 14px;
    color: #111827;
    margin-bottom: 3px;
}

.project-info {
    font-size: 13px !important;
    color: var(--primary-blue) !important;
    font-weight: 600 !important;
}

.helpful-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.helpful-btn:hover {
    background: #e0edff;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.helpful-btn.marked {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.thumb-icon {
    font-size: 16px;
}

/* CTA Section */
.testimonial-cta-section {
    padding: 80px 0;
    background: white;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.cta-card h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    padding: 16px 32px;
    background: transparent;
    border: 2px solid white;
    color: white;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    font-weight: 300;
    color: #111827;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-dark);
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.modal-content>p {
    color: #111827;
    margin-bottom: 30px;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.star-rating-input {
    display: flex;
    gap: 8px;
    font-size: 32px;
}

.star-input {
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-input:hover,
.star-input.active {
    color: #fbbf24;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 42px;
    }

    .rating-summary-card {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }

    .overall-rating {
        border-right: none;
        border-bottom: 2px solid #e5e7eb;
        padding-bottom: 30px;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-buttons {
        justify-content: center;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .featured-testimonial {
        padding: 40px 30px;
    }

    .featured-quote {
        font-size: 18px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-card h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .modal-content {
        padding: 30px;
    }
}

/* Animation for filtering */
.testimonial-card-enhanced.fade-out {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.testimonial-card-enhanced.fade-in {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

/* Clean FAQ Page Styles - Matching Reference Design */
.faq-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.faq-subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.faq-container-clean {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item-clean {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-clean:hover {
    border-color: #c0c0c0;
}

.faq-question-clean {
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-icon-clean {
    font-size: 24px;
    color: #666;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item-clean.active .faq-icon-clean {
    transform: rotate(45deg);
}

.faq-answer-clean {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.faq-item-clean.active .faq-answer-clean {
    padding: 0 25px 20px;
}

@media (max-width: 768px) {
    .faq-main-title {
        font-size: 36px;
    }

    .faq-question-clean {
        font-size: 15px;
        padding: 18px 20px;
    }

    .faq-answer-clean {
        font-size: 14px;
    }

    .faq-item-clean.active .faq-answer-clean {
        padding: 0 20px 18px;
    }
}

/* Clean Professional Team Page Styles */
.section-subtitle-clean {
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-size: 14px;
}

.page-title-clean {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.page-description-clean {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

.team-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.team-card-clean {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card-clean:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: #d0d0d0;
}

.team-img-container-clean {
    height: 320px;
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.team-img-clean {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card-clean:hover .team-img-clean {
    transform: scale(1.05);
}

.team-info-clean {
    padding: 25px;
    text-align: center;
}

.member-name-clean {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.member-role-clean {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--primary-blue);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.member-bio-clean {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social-clean {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.team-social-clean a {
    font-size: 13px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.team-social-clean a:hover {
    color: var(--primary-blue);
}

.team-social-clean span {
    color: #ccc;
    font-size: 12px;
}

@media (max-width: 768px) {
    .page-title-clean {
        font-size: 36px;
    }

    .team-grid-clean {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }
}

/* Modern Professional Blog Styles */
.blog-featured {
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.featured-img-container {
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-img-container:hover .featured-img {
    transform: scale(1.03);
}

.featured-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-category {
    color: var(--primary-blue);
}

.featured-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 15px;
}

.featured-excerpt {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.blog-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card-clean {
    background: transparent;
    transition: transform 0.3s ease;
}

.blog-img-container {
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-clean:hover .blog-img {
    transform: scale(1.05);
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-text-arrow {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-text-arrow:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

@media (max-width: 900px) {
    .blog-featured {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-img-container {
        height: 300px;
    }

    .featured-title {
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    .blog-grid-clean {
        grid-template-columns: 1fr;
    }
}

/* HERO GAP REDUCTION FIX */
.hero-layout-v1 {
    /* Override centering to move content up */
    align-content: start !important;
    padding-top: -150px !important;
    /* Header height + gap */
    height: 100%;
}

@media (max-width: 768px) {
    .hero-layout-v1 {
        padding-top: 120px !important;
        grid-template-columns: 1fr;
        gap: 30px;
        align-content: center !important;
        /* On mobile center is better usually */
    }
}/ *   T e a m   P r o f i l e   M o d a l   S t y l e s   * / 
 
 . p r o f i l e - m o d a l - o v e r l a y   { 
 
         p o s i t i o n :   f i x e d ; 
 
         t o p :   0 ; 
 
         l e f t :   0 ; 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   1 0 0 % ; 
 
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 7 ) ; 
 
         b a c k d r o p - f i l t e r :   b l u r ( 5 p x ) ; 
 
         z - i n d e x :   9 9 9 9 ; 
 
         d i s p l a y :   n o n e ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         o p a c i t y :   0 ; 
 
         t r a n s i t i o n :   o p a c i t y   0 . 3 s   e a s e ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - o v e r l a y . a c t i v e   { 
 
         d i s p l a y :   f l e x ; 
 
         o p a c i t y :   1 ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - c o n t a i n e r   { 
 
         b a c k g r o u n d :   w h i t e ; 
 
         b o r d e r - r a d i u s :   2 0 p x ; 
 
         m a x - w i d t h :   9 0 0 p x ; 
 
         w i d t h :   9 0 % ; 
 
         m a x - h e i g h t :   8 5 v h ; 
 
         o v e r f l o w - y :   a u t o ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         t r a n s f o r m :   s c a l e ( 0 . 9 ) ; 
 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ; 
 
         b o x - s h a d o w :   0   2 0 p x   6 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - o v e r l a y . a c t i v e   . p r o f i l e - m o d a l - c o n t a i n e r   { 
 
         t r a n s f o r m :   s c a l e ( 1 ) ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - c l o s e   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   2 0 p x ; 
 
         r i g h t :   2 0 p x ; 
 
         w i d t h :   4 0 p x ; 
 
         h e i g h t :   4 0 p x ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
 
         b o r d e r :   n o n e ; 
 
         f o n t - s i z e :   2 4 p x ; 
 
         c u r s o r :   p o i n t e r ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 
         z - i n d e x :   1 0 ; 
 
         c o l o r :   # 3 3 3 ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - c l o s e : h o v e r   { 
 
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ; 
 
         t r a n s f o r m :   r o t a t e ( 9 0 d e g ) ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - c o n t e n t   { 
 
         p a d d i n g :   5 0 p x ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - h e a d e r   { 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   2 0 0 p x   1 f r ; 
 
         g a p :   4 0 p x ; 
 
         m a r g i n - b o t t o m :   4 0 p x ; 
 
         a l i g n - i t e m s :   s t a r t ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - p h o t o   { 
 
         w i d t h :   2 0 0 p x ; 
 
         h e i g h t :   2 0 0 p x ; 
 
         b o r d e r - r a d i u s :   1 5 p x ; 
 
         o b j e c t - f i t :   c o v e r ; 
 
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - i n f o   h 2   { 
 
         f o n t - s i z e :   3 2 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         c o l o r :   # 1 1 1 8 2 7 ; 
 
         m a r g i n :   0   0   1 0 p x   0 ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - i n f o   h 3   { 
 
         f o n t - s i z e :   1 8 p x ; 
 
         f o n t - w e i g h t :   5 0 0 ; 
 
         c o l o r :   v a r ( - - p r i m a r y - b l u e ) ; 
 
         m a r g i n :   0   0   2 0 p x   0 ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - s e c t i o n   { 
 
         m a r g i n - b o t t o m :   3 0 p x ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - s e c t i o n   h 4   { 
 
         f o n t - s i z e :   2 0 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         c o l o r :   # 1 1 1 8 2 7 ; 
 
         m a r g i n - b o t t o m :   1 5 p x ; 
 
         b o r d e r - b o t t o m :   2 p x   s o l i d   # e 5 e 7 e b ; 
 
         p a d d i n g - b o t t o m :   1 0 p x ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - s e c t i o n   p   { 
 
         f o n t - s i z e :   1 6 p x ; 
 
         l i n e - h e i g h t :   1 . 8 ; 
 
         c o l o r :   # 4 b 5 5 6 3 ; 
 
         m a r g i n - b o t t o m :   1 5 p x ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - q u o t e   { 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f 0 f 9 f f   0 % ,   # e 0 f 2 f e   1 0 0 % ) ; 
 
         b o r d e r - l e f t :   4 p x   s o l i d   v a r ( - - p r i m a r y - b l u e ) ; 
 
         p a d d i n g :   2 5 p x ; 
 
         b o r d e r - r a d i u s :   1 0 p x ; 
 
         f o n t - s t y l e :   i t a l i c ; 
 
         c o l o r :   # 1 e 4 0 a f ; 
 
         f o n t - s i z e :   1 7 p x ; 
 
         l i n e - h e i g h t :   1 . 7 ; 
 
         m a r g i n :   2 0 p x   0 ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - a c h i e v e m e n t s   { 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 2 0 0 p x ,   1 f r ) ) ; 
 
         g a p :   1 5 p x ; 
 
         m a r g i n - t o p :   1 5 p x ; 
 
 } 
 
 
 
 . a c h i e v e m e n t - i t e m   { 
 
         b a c k g r o u n d :   # f 9 f a f b ; 
 
         p a d d i n g :   1 5 p x ; 
 
         b o r d e r - r a d i u s :   1 0 p x ; 
 
         b o r d e r - l e f t :   3 p x   s o l i d   v a r ( - - a c c e n t - o r a n g e ) ; 
 
 } 
 
 
 
 . a c h i e v e m e n t - i t e m   s t r o n g   { 
 
         d i s p l a y :   b l o c k ; 
 
         c o l o r :   # 1 1 1 8 2 7 ; 
 
         f o n t - s i z e :   1 5 p x ; 
 
         m a r g i n - b o t t o m :   5 p x ; 
 
 } 
 
 
 
 . a c h i e v e m e n t - i t e m   s p a n   { 
 
         c o l o r :   # 6 b 7 2 8 0 ; 
 
         f o n t - s i z e :   1 4 p x ; 
 
 } 
 
 
 
 . b t n - s e e - p r o f i l e   { 
 
         d i s p l a y :   i n l i n e - b l o c k ; 
 
         m a r g i n - t o p :   1 5 p x ; 
 
         p a d d i n g :   1 0 p x   2 0 p x ; 
 
         b a c k g r o u n d :   v a r ( - - p r i m a r y - b l u e ) ; 
 
         c o l o r :   w h i t e ; 
 
         b o r d e r - r a d i u s :   8 p x ; 
 
         f o n t - s i z e :   1 4 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 
         b o r d e r :   n o n e ; 
 
         c u r s o r :   p o i n t e r ; 
 
 } 
 
 
 
 . b t n - s e e - p r o f i l e : h o v e r   { 
 
         b a c k g r o u n d :   # 0 c 3 f b 0 ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 
         b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 1 5 ,   7 9 ,   2 1 6 ,   0 . 3 ) ; 
 
 } 
 
 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
 
         . p r o f i l e - m o d a l - c o n t e n t   { 
 
                 p a d d i n g :   3 0 p x   2 0 p x ; 
 
         } 
 
 
 
         . p r o f i l e - m o d a l - h e a d e r   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
 
                 g a p :   2 0 p x ; 
 
                 t e x t - a l i g n :   c e n t e r ; 
 
         } 
 
 
 
         . p r o f i l e - m o d a l - p h o t o   { 
 
                 w i d t h :   1 5 0 p x ; 
 
                 h e i g h t :   1 5 0 p x ; 
 
                 m a r g i n :   0   a u t o ; 
 
         } 
 
 
 
         . p r o f i l e - m o d a l - i n f o   h 2   { 
 
                 f o n t - s i z e :   2 6 p x ; 
 
         } 
 
 
 
         . p r o f i l e - m o d a l - a c h i e v e m e n t s   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
 
         } 
 
 } 
 
 / *   T e a m   P r o f i l e   M o d a l   S t y l e s   * / 
 
 . p r o f i l e - m o d a l - o v e r l a y   { 
 
         p o s i t i o n :   f i x e d ; 
 
         t o p :   0 ; 
 
         l e f t :   0 ; 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   1 0 0 % ; 
 
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 7 5 ) ; 
 
         b a c k d r o p - f i l t e r :   b l u r ( 8 p x ) ; 
 
         z - i n d e x :   9 9 9 9 ; 
 
         d i s p l a y :   n o n e ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         o p a c i t y :   0 ; 
 
         t r a n s i t i o n :   o p a c i t y   0 . 3 s   e a s e ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - o v e r l a y . a c t i v e   { 
 
         d i s p l a y :   f l e x ; 
 
         o p a c i t y :   1 ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - c o n t a i n e r   { 
 
         b a c k g r o u n d :   w h i t e ; 
 
         b o r d e r - r a d i u s :   2 0 p x ; 
 
         m a x - w i d t h :   9 0 0 p x ; 
 
         w i d t h :   9 0 % ; 
 
         m a x - h e i g h t :   8 5 v h ; 
 
         o v e r f l o w - y :   a u t o ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         t r a n s f o r m :   s c a l e ( 0 . 9 ) ; 
 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ; 
 
         b o x - s h a d o w :   0   2 0 p x   6 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - o v e r l a y . a c t i v e   . p r o f i l e - m o d a l - c o n t a i n e r   { 
 
         t r a n s f o r m :   s c a l e ( 1 ) ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - c l o s e   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   2 0 p x ; 
 
         r i g h t :   2 0 p x ; 
 
         w i d t h :   4 0 p x ; 
 
         h e i g h t :   4 0 p x ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
 
         b o r d e r :   n o n e ; 
 
         f o n t - s i z e :   2 4 p x ; 
 
         c u r s o r :   p o i n t e r ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 
         z - i n d e x :   1 0 ; 
 
         c o l o r :   # 3 3 3 ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - c l o s e : h o v e r   { 
 
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ; 
 
         t r a n s f o r m :   r o t a t e ( 9 0 d e g ) ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - c o n t e n t   { 
 
         p a d d i n g :   5 0 p x ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - h e a d e r   { 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   2 0 0 p x   1 f r ; 
 
         g a p :   4 0 p x ; 
 
         m a r g i n - b o t t o m :   4 0 p x ; 
 
         a l i g n - i t e m s :   s t a r t ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - p h o t o   { 
 
         w i d t h :   2 0 0 p x ; 
 
         h e i g h t :   2 0 0 p x ; 
 
         b o r d e r - r a d i u s :   1 5 p x ; 
 
         o b j e c t - f i t :   c o v e r ; 
 
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - i n f o   h 2   { 
 
         f o n t - s i z e :   3 2 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         c o l o r :   # 1 1 1 8 2 7 ; 
 
         m a r g i n :   0   0   1 0 p x   0 ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - i n f o   h 3   { 
 
         f o n t - s i z e :   1 8 p x ; 
 
         f o n t - w e i g h t :   5 0 0 ; 
 
         c o l o r :   v a r ( - - p r i m a r y - b l u e ) ; 
 
         m a r g i n :   0   0   2 0 p x   0 ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - s e c t i o n   { 
 
         m a r g i n - b o t t o m :   3 0 p x ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - s e c t i o n   h 4   { 
 
         f o n t - s i z e :   2 0 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         c o l o r :   # 1 1 1 8 2 7 ; 
 
         m a r g i n - b o t t o m :   1 5 p x ; 
 
         b o r d e r - b o t t o m :   2 p x   s o l i d   # e 5 e 7 e b ; 
 
         p a d d i n g - b o t t o m :   1 0 p x ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - s e c t i o n   p   { 
 
         f o n t - s i z e :   1 6 p x ; 
 
         l i n e - h e i g h t :   1 . 8 ; 
 
         c o l o r :   # 4 b 5 5 6 3 ; 
 
         m a r g i n - b o t t o m :   1 5 p x ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - q u o t e   { 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f 0 f 9 f f   0 % ,   # e 0 f 2 f e   1 0 0 % ) ; 
 
         b o r d e r - l e f t :   4 p x   s o l i d   v a r ( - - p r i m a r y - b l u e ) ; 
 
         p a d d i n g :   2 5 p x ; 
 
         b o r d e r - r a d i u s :   1 0 p x ; 
 
         f o n t - s t y l e :   i t a l i c ; 
 
         c o l o r :   # 1 e 4 0 a f ; 
 
         f o n t - s i z e :   1 7 p x ; 
 
         l i n e - h e i g h t :   1 . 7 ; 
 
         m a r g i n :   2 0 p x   0 ; 
 
 } 
 
 
 
 . p r o f i l e - m o d a l - a c h i e v e m e n t s   { 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 2 0 0 p x ,   1 f r ) ) ; 
 
         g a p :   1 5 p x ; 
 
         m a r g i n - t o p :   1 5 p x ; 
 
 } 
 
 
 
 . a c h i e v e m e n t - i t e m   { 
 
         b a c k g r o u n d :   # f 9 f a f b ; 
 
         p a d d i n g :   1 5 p x ; 
 
         b o r d e r - r a d i u s :   1 0 p x ; 
 
         b o r d e r - l e f t :   3 p x   s o l i d   v a r ( - - a c c e n t - o r a n g e ) ; 
 
 } 
 
 
 
 . a c h i e v e m e n t - i t e m   s t r o n g   { 
 
         d i s p l a y :   b l o c k ; 
 
         c o l o r :   # 1 1 1 8 2 7 ; 
 
         f o n t - s i z e :   1 5 p x ; 
 
         m a r g i n - b o t t o m :   5 p x ; 
 
 } 
 
 
 
 . a c h i e v e m e n t - i t e m   s p a n   { 
 
         c o l o r :   # 6 b 7 2 8 0 ; 
 
         f o n t - s i z e :   1 4 p x ; 
 
 } 
 
 
 
 . b t n - s e e - p r o f i l e   { 
 
         d i s p l a y :   i n l i n e - f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   8 p x ; 
 
         m a r g i n - t o p :   1 5 p x ; 
 
         m a r g i n - b o t t o m :   1 5 p x ; 
 
         p a d d i n g :   1 2 p x   2 4 p x ; 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 6 6 7 e e a   0 % ,   # 7 6 4 b a 2   1 0 0 % ) ; 
 
         c o l o r :   w h i t e ; 
 
         b o r d e r - r a d i u s :   2 5 p x ; 
 
         f o n t - s i z e :   1 4 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 
         b o r d e r :   n o n e ; 
 
         c u r s o r :   p o i n t e r ; 
 
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   0 . 4 ) ; 
 
 } 
 
 
 
 . b t n - s e e - p r o f i l e : h o v e r   { 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 7 6 4 b a 2   0 % ,   # 6 6 7 e e a   1 0 0 % ) ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 
         b o x - s h a d o w :   0   6 p x   2 0 p x   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - s e e - p r o f i l e : : b e f o r e   { 
 
         c o n t e n t :   " � x � " ; 
 
         f o n t - s i z e :   1 6 p x ; 
 
 } 
 
 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
 
         . p r o f i l e - m o d a l - c o n t e n t   { 
 
                 p a d d i n g :   3 0 p x   2 0 p x ; 
 
         } 
 
 
 
         . p r o f i l e - m o d a l - h e a d e r   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
 
                 g a p :   2 0 p x ; 
 
                 t e x t - a l i g n :   c e n t e r ; 
 
         } 
 
 
 
         . p r o f i l e - m o d a l - p h o t o   { 
 
                 w i d t h :   1 5 0 p x ; 
 
                 h e i g h t :   1 5 0 p x ; 
 
                 m a r g i n :   0   a u t o ; 
 
         } 
 
 
 
         . p r o f i l e - m o d a l - i n f o   h 2   { 
 
                 f o n t - s i z e :   2 6 p x ; 
 
         } 
 
 
 
         . p r o f i l e - m o d a l - a c h i e v e m e n t s   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
 
         } 
 
 } 
 
 
/* -- PORTFOLIO GRID (Recent Installations) -- */
.spl-portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}
.spl-portfolio-eyebrow {
    color: var(--accent-orange, #f59e0b);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}
.spl-portfolio-title {
    font-size: clamp(32px, 4vw, 42px);
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: var(--primary-dark, #0f172a);
    margin: 0;
    line-height: 1.2;
}
.spl-portfolio-link {
    color: var(--primary-blue, #1e40af);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
    margin-bottom: 8px;
}
.spl-portfolio-link:hover {
    color: var(--accent-orange, #f59e0b);
}

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

.spl-portfolio-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    aspect-ratio: 4/3; /* Make it a bit bigger / maintain pleasant ratio */
}

.spl-portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.spl-portfolio-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease, opacity 0.4s ease;
}

.spl-portfolio-card:hover .spl-portfolio-video {
    transform: scale(1.05);
    opacity: 0.9;
}

.spl-portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.4) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.spl-portfolio-card:hover .spl-portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.spl-portfolio-content h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px 0;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
    opacity: 0;
}

.spl-portfolio-content p {
    color: #bfdbfe;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.2s, opacity 0.4s ease 0.2s;
    opacity: 0;
}

.spl-portfolio-card:hover .spl-portfolio-content h3,
.spl-portfolio-card:hover .spl-portfolio-content p {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 1024px) {
    .spl-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .spl-portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .spl-portfolio-grid {
        grid-template-columns: 1fr;
    }
    /* Always show text on mobile */
    .spl-portfolio-overlay,
    .spl-portfolio-content h3,
    .spl-portfolio-content p {
        opacity: 1;
        transform: translateY(0);
    }
}
/* -- SCROLL ANIMATIONS GLOBAL -- */
.spl-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.spl-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.spl-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.spl-reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}
.spl-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.spl-reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}
.spl-delay-1 { transition-delay: 0.1s; }
.spl-delay-2 { transition-delay: 0.2s; }
.spl-delay-3 { transition-delay: 0.3s; }
.spl-delay-4 { transition-delay: 0.4s; }
.spl-delay-5 { transition-delay: 0.5s; }
.spl-delay-6 { transition-delay: 0.6s; }
/* -- SUNTEAM CAPABILITIES GRID -- */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.capability-card {
    background: #151f32;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: default;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(251, 191, 36, 0.3);
}

.cap-number {
    color: #fbbf24;
    font-size: 20px;
    font-weight: 800;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.2;
}

.cap-content h3 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.cap-content p {
    color: #f59e0b;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}
/* -- LUXURY TESTIMONIALS (Blue/Gold) -- */
.luxury-testimonials-section {
    background-color: #f4f8fc;
    padding: 100px 0;
}
.lt-header {
    margin-bottom: 50px;
}
.lt-eyebrow {
    color: #3b82f6; /* Soft blue eyebrow */
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}
.lt-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}
.lt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.lt-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 50, 100, 0.04);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.lt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 50, 100, 0.08);
}
.lt-quote-icon {
    font-size: 40px;
    color: #fcd34d; /* Golden amber */
    line-height: 1;
    font-family: serif;
    margin-bottom: 20px;
}
.lt-text {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin-bottom: 30px;
}
.lt-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.lt-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eef2ff;
    color: #1e3a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
    font-family: 'Playfair Display', serif;
}
.lt-author-info strong {
    display: block;
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}
.lt-author-info span {
    display: block;
    color: #94a3b8;
    font-size: 13px;
}
/* -- PREMIUM CERTIFICATIONS GRID (White Cards) -- */
.premium-certs-section {
    background-color: #ffffff; /* Clean white or very light gray matching image */
    padding: 100px 0;
}
.pc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}
.pc-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 280px;
}
.pc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}
.pc-img-wrap {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    height: 100px;
    width: 100%;
}
.pc-img {
    max-height: 80px;
    max-width: 80%;
    object-fit: contain;
}
.pc-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px 0;
    font-family: 'DM Sans', system-ui, sans-serif;
}
.pc-subtitle {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}
/* -- TRUSTED NETWORK SECTION -- */
.trusted-network-section {
    padding: 60px 0 100px;
    background-color: #ffffff;
    text-align: center;
}
.tn-eyebrow {
    color: #64748b; /* Muted blue-gray */
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}
.tn-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 40px;
}
.tn-pills-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}
.tn-pill {
    background-color: #f1f5f9; /* Very light slate */
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px; /* Slightly rounded edges */
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: default;
}
.tn-pill:hover {
    transform: translateY(-2px);
    background-color: #e2e8f0;
}
/* -- RESTORED: GLOBAL SCROLL REVEAL ANIMATIONS -- */
.spl-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}
.spl-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.spl-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.spl-reveal.spl-active,
.spl-reveal-left.spl-active,
.spl-reveal-right.spl-active {
  opacity: 1;
  transform: translate(0, 0);
}
.spl-delay-1 { transition-delay: 0.1s; }
.spl-delay-2 { transition-delay: 0.2s; }
.spl-delay-3 { transition-delay: 0.3s; }
.spl-delay-4 { transition-delay: 0.4s; }

/* -- RESTORED: LUXURY TESTIMONIALS -- */
.luxury-testimonials-section {
    padding: 100px 0;
    background: #fdfdfd;
}
.lt-header {
    text-align: center;
    margin-bottom: 60px;
}
.lt-eyebrow {
    color: #cca43b;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}
.lt-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}
.lt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.lt-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.lt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.lt-quote-icon {
    font-family: 'Georgia', serif;
    font-size: 80px;
    color: #f1f5f9;
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 30px;
    user-select: none;
}
.lt-text {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    font-style: italic;
}
.lt-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 25px;
}
.lt-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
}
.lt-author-info strong {
    display: block;
    color: #0f172a;
    font-size: 16px;
    margin-bottom: 4px;
}
.lt-author-info span {
    color: #64748b;
    font-size: 13px;
    display: block;
}

/* -- RESTORED: PREMIUM CERTIFICATIONS -- */
.premium-certs-section {
    padding: 100px 0;
    background: #ffffff;
}
.pc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.pc-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.pc-img-wrap {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.pc-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.pc-title {
    font-size: 18px;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 8px;
}
.pc-subtitle {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* -- RESTORED: TRUSTED NETWORK -- */
.trusted-network-section {
    padding: 60px 0 100px;
    background-color: #ffffff;
    text-align: center;
}
.tn-eyebrow {
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}
.tn-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 40px;
}
.tn-pills-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}
.tn-pill {
    background-color: #f1f5f9;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: default;
}
.tn-pill:hover {
    transform: translateY(-2px);
    background-color: #e2e8f0;
}
/* -- REQUIRED FIELDS INDICATOR -- */
.required-field::after {
    content: '*';
    color: #ef4444; /* Professional red */
    margin-left: 4px;
    font-weight: bold;
}
