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

html {
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #007178;
    --secondary-color: #1c242a;
    --light-bg: #f4f7f9;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Header Styles */
.header {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    margin: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.logo img {
    height: 65px;
    width: auto;
    filter: brightness(0) invert(1);
}

.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    position: relative;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: var(--white);
    font-weight: 400;
    font-size: 13px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: rgba(255, 255, 255, 0.8);
}

.nav-menu a i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

/* Submenu Styles */
.has-submenu:hover > a i {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 5px;
    padding: 15px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    margin-top: 20px;
}

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

.submenu li {
    padding: 0;
}

.submenu a {
    color: var(--text-dark) !important;
    padding: 12px 25px;
    display: block;
    transition: all 0.3s ease;
    font-size: 14px;
}

.submenu a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color) !important;
    padding-left: 30px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
    margin-left: auto;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    display: block;
}

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

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

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

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    padding: 0 20px;
}

.slide-text {
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    text-align: left;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* Slider Navigation Buttons */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.05);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.3);
    display: block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.15);
    border-color: rgba(0, 0, 0, 0.5);
}

.dot.active {
    background: var(--white);
    width: 12px;
    height: 12px;
    border-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 113, 120, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: #005a5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 113, 120, 0.3);
}

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

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

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

.btn-white:hover {
    background-color: var(--light-bg);
}

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

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

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

.section-subtitle {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Company Profile Section */
.company-profile-section {
    background-color: var(--white);
    padding: 80px 0;
}

.section-label {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.company-profile-content {
    max-width: 100%;
}

.company-profile-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 1200px;
}

.btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-with-icon i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-with-icon:hover i {
    transform: translate(3px, -3px);
}

/* Our Divisions Section */
.divisions-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

/* First Row: Description + 1 Card */
.divisions-row-1 {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 40px;
}

.divisions-first-card {
    display: flex;
    justify-content: flex-end;
}

.divisions-first-card .division-card {
    max-width: 280px;
    width: 100%;
}

.divisions-left {
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.divisions-left .btn-with-icon {
    align-self: flex-start;
    width: fit-content;
}

.divisions-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    flex-grow: 1;
}

.divisions-first-card {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

.divisions-first-card .division-card {
    width: 100%;
}

/* Second Row: 4 Cards */
.divisions-row-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.division-card {
    position: relative;
    background: var(--white);
    border-radius: 10px;
    padding: 30px 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.division-number {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
    transition: color 0.3s ease;
}

.division-card:hover .division-number {
    color: rgba(255, 255, 255, 0.8);
}

.division-icon {
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
}

.division-icon svg {
    width: 100px;
    height: 100px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.division-icon svg path,
.division-icon svg g {
    transition: fill 0.3s ease;
}

.division-card:hover .division-icon svg {
    opacity: 1;
    transform: scale(1.1);
}

.division-card:hover .division-icon svg path,
.division-card:hover .division-icon svg g {
    fill: #ffffff !important;
}

.division-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: 'Manrope', sans-serif;
    position: relative;
    z-index: 3;
    transition: color 0.3s ease;
}

.division-card:hover h4 {
    color: var(--white);
}

.division-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    padding: 4px 0;
}

.division-card:hover .division-btn {
    color: var(--white);
    gap: 12px;
}

.division-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.division-card:hover .division-btn i {
    transform: translate(3px, -3px);
}

.division-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: all 0.4s ease;
    z-index: 1;
    border-radius: 10px;
}

.division-card:hover .division-gradient {
    height: 100%;
}

/* Works Showcase Section */
.works-showcase-section {
    background-color: var(--white);
    padding: 80px 0;
}

.works-carousel-wrapper {
    position: relative;
    margin-top: 40px;
    width: 100%;
}

.works-carousel {
    overflow: hidden;
}

.works-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.works-item {
    position: relative;
    flex: 0 0 calc(25% - 15px);
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.works-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.works-item:hover img {
    transform: scale(1.1);
}

.works-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 113, 120, 0.9) 0%, rgba(28, 36, 42, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.works-item:hover .works-overlay {
    opacity: 1;
}

.works-prev,
.works-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.works-prev {
    left: 20px;
}

.works-next {
    right: 20px;
}

.works-prev:hover,
.works-next:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.works-prev:disabled,
.works-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.works-prev:disabled:hover,
.works-next:disabled:hover {
    background: var(--primary-color);
    transform: translateY(-50%);
}

/* Our Clients Section */
.our-clients-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.clients-carousel-wrapper {
    position: relative;
    margin-top: 40px;
    width: 100%;
}

.clients-carousel {
    overflow: hidden;
}

.clients-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.clients-item {
    position: relative;
    flex: 0 0 calc(25% - 15px);
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 15px;
}

.clients-item img {
    width: auto;
    height: 80px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.clients-item:hover img {
    transform: scale(1.05);
}

.clients-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.clients-item:hover .clients-overlay {
    opacity: 0;
}

.clients-prev,
.clients-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.clients-prev {
    left: 20px;
}

.clients-next {
    right: 20px;
}

.clients-prev:hover,
.clients-next:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.clients-prev:disabled,
.clients-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.clients-prev:disabled:hover,
.clients-next:disabled:hover {
    background: var(--primary-color);
    transform: translateY(-50%);
}

/* Clients Carousel Dots */
.clients-dots {
    display: none;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
    z-index: 10;
}

.clients-dots .client-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 113, 120, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 113, 120, 0.6);
}

.clients-dots .client-dot:hover {
    background: rgba(0, 113, 120, 0.7);
    transform: scale(1.15);
}

.clients-dots .client-dot.active {
    background: var(--primary-color);
    width: 10px;
    height: 10px;
    border-color: var(--primary-color);
}

/* Image Popup Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
    cursor: pointer;
}

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

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoomIn 0.3s ease;
    cursor: default;
    object-fit: contain;
}

@keyframes zoomIn {
    from {
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        transform: translate(-50%, -50%) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 100001;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--primary-color);
    transform: scale(1.2);
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 100001;
    user-select: none;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-prev:hover,
.modal-next:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 100001;
}

/* Services Section */
.services-section {
    background-color: var(--light-bg);
}

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

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #005a5f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 35px;
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--white);
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background-color: #f0f0f0;
    aspect-ratio: 4/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 113, 120, 0.85) 0%, rgba(28, 36, 42, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--white);
}

.portfolio-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

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

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background-color: var(--light-bg);
}

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

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* About Page Styles */
.about-banner {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.about-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.about-banner .banner-content {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    color: var(--white);
}

.about-banner .banner-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    color: var(--white);
}

.breadcrumb {
    font-size: 14px;
    color: var(--white);
}

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

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

.breadcrumb-separator {
    margin: 0 10px;
}

.breadcrumb-current {
    opacity: 0.8;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 80px 0;
    background: url('../images/who-we-are-bg.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
}

.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.who-we-are-left {
    text-align: left;
}

.who-we-are-left .section-description {
    font-size: 16px;
}

.who-we-are-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.who-we-are-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.who-we-are-stats-bottom {
    width: 100%;
}

.stat-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.stat-box h3 {
    font-size: 48px;
    color: var(--primary-color);
    font-weight: 800;
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}

.stat-box:hover h3 {
    color: var(--white);
}

.stat-box > p {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.stat-box:hover > p {
    color: var(--white);
}

.stat-desc {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.stat-box:hover .stat-desc {
    color: var(--white);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    font-size: 28px;
    color: var(--white);
}

.section-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 30px 0;
}

/* Projects & Excellence Section */
.projects-excellence-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.excellence-item {
    text-align: center;
    padding: 40px 30px;
}

.excellence-item h3 {
    font-size: 72px;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 10px;
}

.excellence-item > p {
    font-size: 24px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 20px;
}

.excellence-desc {
    display: block;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.excellence-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.excellence-icon i {
    font-size: 36px;
    color: var(--white);
}

.excellence-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Our Values and Mission Section */
.values-mission-section {
    padding: 80px 0;
    background: url('../images/values-bg.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
}

.values-mission-section .section-label,
.values-mission-section .section-title {
    text-align: left;
    color: var(--white);
}

.values-mission-section .section-title {
    margin-bottom: 60px;
}

.values-mission-section .help-features {
    text-align: center;
}

.values-mission-section .help-feature h4 {
    color: var(--white);
}

.values-mission-section .help-feature p {
    color: var(--white);
    font-size: 14px;
}

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

/* Mission & Vision 2 Column Layout for Subsidiary Pages */
.atelier-mission-vision .help-features {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}

.help-feature {
    text-align: center;
    padding: 30px;
}

.help-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.help-icon i {
    font-size: 48px;
    color: var(--white);
}

.help-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--white);
    stroke-width: 2;
}

.values-mission-section .help-icon i {
    font-size: 48px;
    color: var(--white);
}

.values-mission-section .help-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.values-mission-section .help-icon svg.e-fas-people-arrows {
    fill: var(--primary-color);
    stroke: none;
}

.help-feature h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.help-feature p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Portfolio Page Styles */
.portfolio-banner {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.portfolio-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio-banner .banner-content {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    color: var(--white);
}

.portfolio-banner .banner-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    color: var(--white);
}

.portfolio-gallery-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}


/* Subsidiary Pages Styles */
.page-banner {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.page-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.page-banner .banner-content {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    color: var(--white);
}

.page-banner .banner-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    color: var(--white);
}

/* Video Banner Styles */
.video-banner {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.subsidiary-about-section {
    padding: 80px 0;
    background: url('../images/atelier-services-bg.png') center center no-repeat;
    background-size: cover;
    position: relative;
}

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

.subsidiary-about-left {
    text-align: left;
}

.subsidiary-about-left .section-description {
    font-size: 16px;
}

.subsidiary-about-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.subsidiary-stats-bottom {
    width: 100%;
}

/* Atelier Services Section */
.atelier-services-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.atelier-services-section .section-title {
    text-align: left;
    margin-bottom: 60px;
}

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

.service-item {
    text-align: center;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-item h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-item:hover h4 {
    color: var(--white);
}

.service-item p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.service-item:hover p {
    color: var(--white);
}

/* Footer */
.footer {
    background: url('../images/footer-bg.webp') repeat center center;
    background-size: auto;
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 36, 42, 0.95) 0%, rgba(0, 113, 120, 0.95) 100%);
    z-index: 0;
}

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

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

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-about {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.footer-contact i {
    color: var(--primary-color);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 80px);
        background: var(--secondary-color);
        flex-direction: column;
        padding: 20px 0;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
        gap: 0;
    }

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

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-menu > li > a {
        display: block;
        padding: 12px 20px;
        width: 100%;
        font-size: 14px;
        color: var(--white);
    }

    .nav-menu .submenu {
        position: static;
        display: none;
        background: rgba(0,0,0,0.15);
        box-shadow: none;
        width: 100%;
        padding: 0;
    }

    .nav-menu .has-submenu > a i {
        transition: transform 0.3s ease;
    }

    .nav-menu .has-submenu.open > a i {
        transform: rotate(180deg);
    }

    .nav-menu .submenu li {
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-menu .submenu a {
        padding: 10px 20px 10px 35px;
        font-size: 13px;
        color: var(--white) !important;
    }

    .nav-menu .submenu a:hover {
        background-color: rgba(255,255,255,0.1) !important;
        color: var(--white) !important;
    }

    .header-content {
        gap: 0 !important;
    }

    .main-nav {
        position: absolute;
        left: -9999px;
    }

    .mobile-toggle {
        display: flex;
    }

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

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

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

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

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

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

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

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

    .services-grid,
    .portfolio-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

/* Banner Slideshow */
.page-banner.banner-slideshow {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.page-banner.banner-slideshow img {
    height: 100% !important;
}

.banner-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-slideshow .banner-content {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    color: var(--white);
    z-index: 10;
}

/* Contact Info Cards */
.contact-info-section > .container > div > div:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
    .contact-info-section > .container > div {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .contact-section > .container > div:last-child {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 576px) {
    .contact-info-section > .container > div {
        grid-template-columns: 1fr !important;
    }
}

/* Floating Labels */
.floating-label-group {
    position: relative;
    margin-bottom: 30px;
}

.floating-input {
    width: 100%;
    padding: 20px 14px 8px 14px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

.floating-input:focus {
    border-color: var(--primary-color) !important;
    outline: none;
}

.floating-label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

textarea.floating-input + .floating-label {
    top: 20px;
    transform: none;
}

.floating-input:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label,
.floating-input.has-value + .floating-label {
    top: 0px;
    transform: translateY(0);
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.floating-input::placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-input:focus::placeholder {
    opacity: 0;
}

/* Hide browser validation messages that might appear as duplicate */
.floating-input:invalid {
    box-shadow: none;
}

/* Banner Main Title */
.banner-main-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    font-family: 'Manrope', sans-serif;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Banner Description Box */
.banner-description {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    background: linear-gradient(135deg, rgba(0, 113, 120, 0.95) 0%, rgba(28, 36, 42, 0.95) 100%);
    padding: 30px 45px;
    z-index: 10;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.banner-desc-content {
    max-width: 600px;
}

.banner-desc-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    font-family: 'Manrope', sans-serif;
    line-height: 1.3;
}

.banner-desc-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.92;
    margin: 0;
}

@media (max-width: 1200px) {
    .banner-main-title {
        font-size: 52px;
    }
}

@media (max-width: 992px) {
    .banner-main-title {
        font-size: 42px;
    }

    .banner-description {
        width: 70%;
        padding: 25px 35px;
    }

    .banner-desc-title {
        font-size: 18px;
    }

    .banner-desc-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .banner-main-title {
        font-size: 32px;
    }

    .hero-slider {
        height: auto !important;
        min-height: 550px;
    }

    .slide {
        position: absolute;
        height: auto;
        min-height: 550px;
        display: block;
        overflow: visible;
    }

    .slide.active {
        overflow: visible;
    }

    .slide img {
        position: relative;
        height: 350px;
        width: 100%;
        object-fit: cover;
    }

    .slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 350px;
    }

    .slide-content {
        position: absolute;
        top: 175px;
        transform: translateY(-50%);
        width: 100%;
    }

    .banner-description {
        position: absolute;
        top: 350px;
        width: 100%;
        clip-path: none;
        padding: 10px 20px 35px 20px;
        bottom: auto;
        left: 0;
        z-index: 15;
    }

    .banner-desc-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .banner-desc-text {
        font-size: 12px;
        line-height: 1.5;
        margin: 0;
    }

    /* Division Cards */
    .divisions-row-1 {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .divisions-left {
        padding-right: 0 !important;
    }

    .divisions-first-card {
        justify-content: center !important;
    }

    .divisions-first-card .division-card {
        max-width: 100% !important;
    }

    .divisions-row-2 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .division-card {
        padding: 25px 20px !important;
    }

    .division-card h4 {
        font-size: 18px !important;
    }

    .division-icon svg {
        width: 80px !important;
        height: 80px !important;
    }

    /* Works Showcase */
    .works-item {
        flex: 0 0 calc(50% - 10px) !important;
    }

    /* Clients Carousel */
    .clients-item {
        flex: 0 0 calc(50% - 10px) !important;
    }

    /* Company Profile */
    .company-profile-section .container {
        padding: 0 15px;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* About Page - Who We Are Section */
    .who-we-are-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .who-we-are-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* About Page - Values & Mission Section */
    .help-features {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Subsidiary Pages - About Section */
    .subsidiary-about-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

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

    /* Subsidiary Pages - Services Section */
    .atelier-services-section .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Subsidiary Pages - Mission/Vision */
    .atelier-mission-vision .help-features {
        grid-template-columns: 1fr !important;
    }

    /* Works Showcase */
    .works-item {
        flex: 0 0 calc(50% - 10px) !important;
    }
}

@media (max-width: 576px) {
    /* Container padding */
    .container {
        padding: 0 15px;
    }

    /* Header */
    .logo img {
        height: 50px;
    }

    /* Division Cards */
    .divisions-row-1 {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .divisions-left {
        padding-right: 0 !important;
    }

    .divisions-left .section-label,
    .divisions-left .section-title,
    .divisions-left .divisions-desc {
        text-align: left;
    }

    .divisions-left .btn {
        text-align: left;
    }

    .divisions-desc {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }

    .divisions-first-card {
        justify-content: center !important;
    }

    .divisions-first-card .division-card {
        max-width: 100% !important;
        text-align: center;
    }

    .divisions-row-2 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .division-card {
        padding: 25px 20px !important;
        text-align: center;
    }

    .division-card h4 {
        font-size: 17px !important;
    }

    .division-number {
        font-size: 12px !important;
    }

    .division-icon svg {
        width: 70px !important;
        height: 70px !important;
        margin: 0 auto !important;
    }

    .division-btn {
        font-size: 12px !important;
    }

    /* Works Showcase */
    .works-item {
        flex: 0 0 100% !important;
    }

    /* Clients Carousel */
    .clients-item {
        flex: 0 0 calc(50% - 10px) !important;
        height: 120px !important;
    }

    .clients-item img {
        height: 60px !important;
    }

    .clients-prev,
    .clients-next {
        display: none !important;
    }

    .clients-carousel-wrapper {
        position: relative;
        padding-bottom: 40px;
    }

    .clients-dots {
        display: flex !important;
    }

    /* Section titles */
    .section-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    .section-label {
        font-size: 11px !important;
        letter-spacing: 1.5px !important;
    }

    /* Banner titles */
    .banner-title {
        font-size: 28px !important;
    }

    /* Subsection headings */
    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    h4 {
        font-size: 16px !important;
    }

    /* Buttons */
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .btn-with-icon {
        padding: 10px 18px;
        font-size: 12px;
        gap: 6px;
    }

    .btn-with-icon i {
        font-size: 12px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo img {
        height: 60px;
        margin: 0 auto 15px;
    }

    .footer-about {
        text-align: center;
        font-size: 14px;
        margin-bottom: 25px;
    }

    .footer-content {
        gap: 35px !important;
        grid-template-columns: 1fr !important;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-links li,
    .footer-contact li {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .footer-contact li {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;
    }

    .footer-contact li i {
        margin-top: 3px;
        min-width: 16px;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
        text-align: center;
        font-size: 13px;
    }

    /* Banner */
    .hero-slider {
        height: 400px !important;
    }

    .banner-main-title {
        font-size: 24px !important;
    }

    .slide-content .container {
        padding: 0 15px;
    }

    /* Banner Arrows */
    .slider-prev,
    .slider-next {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .slider-prev {
        left: 10px;
        top: 40%;
    }

    .slider-next {
        right: 10px;
        top: 40%;
    }

    /* Banner Slider Dots */
    .slider-dots {
        bottom: auto;
        top: 515px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 20;
        position: absolute;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 10px;
        height: 10px;
    }

    /* Banner Description - adjust z-index */
    .banner-description {
        z-index: 10;
    }

    /* About Page - Who We Are Section */
    .who-we-are-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .who-we-are-stats {
        grid-template-columns: 1fr !important;
    }

    .stat-box {
        padding: 25px 20px !important;
    }

    .stat-box h3 {
        font-size: 36px !important;
    }

    .stat-box > p {
        font-size: 16px !important;
    }

    .stat-desc {
        font-size: 14px !important;
    }

    /* About Page - Values & Mission Section */
    .help-features {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .help-feature {
        text-align: center !important;
    }

    .help-feature h4 {
        font-size: 17px !important;
    }

    .division-card h4 {
        font-size: 16px !important;
    }

    .help-feature p {
        font-size: 14px !important;
    }

    .help-icon {
        margin: 0 auto 15px !important;
    }

    /* About Page - Banner Mobile */
    .about-banner {
        height: 300px;
        overflow: hidden;
    }

    .about-banner img {
        height: 100%;
        object-fit: cover;
    }

    .about-banner .banner-content {
        bottom: 30px;
    }

    .about-banner .banner-title {
        font-size: 32px !important;
    }

    .breadcrumb {
        font-size: 13px;
    }

    /* Subsidiary Pages - Banner Mobile */
    .page-banner {
        height: 300px;
        overflow: hidden;
    }

    .page-banner img {
        height: 100%;
        object-fit: cover;
    }

    .page-banner .banner-content {
        bottom: 30px;
    }

    .page-banner .banner-title {
        font-size: 32px !important;
    }

    /* Subsidiary Pages - About Section */
    .subsidiary-about-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .subsidiary-stats {
        grid-template-columns: 1fr !important;
    }

    /* Subsidiary Pages - Services Section */
    .atelier-services-section .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .service-item {
        padding: 25px 20px !important;
        text-align: center;
    }

    .service-item h4 {
        font-size: 17px !important;
    }

    .service-item p {
        font-size: 14px !important;
    }

    /* Subsidiary Pages - Mission/Vision */
    .atelier-mission-vision .help-features {
        grid-template-columns: 1fr !important;
    }

    /* Works Showcase Mobile */
    .works-prev,
    .works-next {
        display: none !important;
    }

    .works-carousel-wrapper {
        position: relative;
        padding-bottom: 40px;
    }

    .works-item {
        flex: 0 0 100% !important;
    }

    /* Standardize all description/paragraph font sizes on mobile */
    .section-description,
    .who-we-are-left .section-description,
    .subsidiary-about-left .section-description,
    .service-card p,
    .portfolio-item p,
    p {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr !important;
    }

    .stat-item {
        padding: 25px 20px !important;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
}
