/* ==========================================
   ATIYATALLA POLYMERS PAGE - COMPLETE CSS
   Modern, Professional Design
   assets/css/atiyatalla-polymers.css
   ========================================== */

/* ==========================================
   PRELOADER
   ========================================== */

.polymers-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #27306c 0%, #1a2347 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.polymers-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    max-width: 300px;
}

.preloader-spinner {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spinRing 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.spinner-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: rgba(229, 113, 18, 0.7);
    animation-delay: 0.2s;
}

.spinner-ring:nth-child(3) {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-top-color: rgba(229, 113, 18, 0.4);
    animation-delay: 0.4s;
}

@keyframes spinRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preloader-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.preloader-progress {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #ffa94d);
    border-radius: 3px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(229, 113, 18, 0.5);
}

.preloader-percentage {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ==========================================
   HERO SECTION WITH IMAGE
   ========================================== */

.polymers-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.polymers-hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.polymers-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.polymers-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            135deg,
            rgba(39, 48, 108, 0.9) 0%,
            rgba(26, 35, 71, 0.85) 50%,
            rgba(229, 113, 18, 0.8) 100%
    );
}

.polymers-overlay-pattern {
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 20% 50%, rgba(229, 113, 18, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(229, 113, 18, 0.1) 0%, transparent 50%);
}

.polymers-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.polymers-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.polymers-hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.polymers-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
}

.polymers-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.polymers-separator {
    color: rgba(255, 255, 255, 0.4);
}

.polymers-current {
    color: var(--white);
}

.polymers-hero-badge {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 36px;
    margin: 0 auto 24px;
    box-shadow: 0 15px 50px rgba(229, 113, 18, 0.5);
    animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.polymers-page-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.polymers-page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 35px;
}

.polymers-hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(229, 113, 18, 0.2);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.hero-feature-item i {
    font-size: 16px;
    color: var(--primary);
}

/* ==========================================
   INTRODUCTION SECTION
   ========================================== */

.polymers-intro-section {
    padding: 80px 0;
    background: var(--white);
}

.polymers-intro-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 40px;
    background: linear-gradient(135deg, #27306c 0%, #1a2347 100%);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.polymers-intro-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at 80% 20%,
            rgba(229, 113, 18, 0.15) 0%,
            transparent 60%
    );
}

.intro-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 16px;
    color: var(--white);
    font-size: 32px;
    flex-shrink: 0;
    box-shadow: 0 10px 35px rgba(229, 113, 18, 0.4);
    position: relative;
    z-index: 1;
}

.intro-card-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.intro-card-title {
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.intro-card-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ==========================================
   CAPABILITIES SECTION
   ========================================== */

.polymers-capabilities-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, #f8f9fa 100%);
}

.capabilities-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.capabilities-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 32px;
    margin: 0 auto 24px;
    box-shadow: 0 15px 45px rgba(229, 113, 18, 0.3);
}

.capabilities-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
}

.capabilities-subtitle {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.capability-card {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #d96510);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.capability-card:hover {
    border-color: rgba(229, 113, 18, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.capability-card:hover::before {
    transform: scaleX(1);
}

.capability-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(229, 113, 18, 0.08);
    line-height: 1;
}

.capability-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 12px;
    color: var(--white);
    font-size: 28px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(229, 113, 18, 0.25);
}

.capability-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.capability-description {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 16px;
}

.capability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(229, 113, 18, 0.1);
    border: 1px solid rgba(229, 113, 18, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

.capability-badge i {
    font-size: 11px;
}

/* ==========================================
   STRENGTHS SECTION
   ========================================== */

.polymers-strengths-section {
    padding: 80px 0;
    background: var(--white);
}

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

.strength-card {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 100%);
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s ease;
}

.strength-card:hover {
    border-color: rgba(229, 113, 18, 0.3);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.strength-card.primary-strength {
    grid-column: span 3;
    background: linear-gradient(135deg, #27306c 0%, #1a2347 100%);
    position: relative;
    overflow: hidden;
}

.strength-card.primary-strength::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at 70% 30%,
            rgba(229, 113, 18, 0.15) 0%,
            transparent 60%
    );
}

.strength-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.strength-card-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 12px;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.strength-card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.4px;
}

.primary-strength .strength-card-title {
    color: var(--white);
}

.strength-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.primary-strength .strength-card-text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.strength-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.highlight-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
}

.highlight-point i {
    color: var(--primary);
    font-size: 14px;
}

.polymers-mission-statement {
    background: linear-gradient(135deg, rgba(229, 113, 18, 0.05), rgba(229, 113, 18, 0.02));
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    position: relative;
}

.mission-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 22px;
    margin: 0 auto 20px;
}

.mission-quote {
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    color: var(--navy);
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.mission-author {
    font-size: 13px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   INDUSTRIES SECTION
   ========================================== */

.polymers-industries-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #27306c 0%, #1a2347 100%);
    position: relative;
    overflow: hidden;
}

.polymers-industries-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at 50% 50%,
            rgba(229, 113, 18, 0.1) 0%,
            transparent 70%
    );
}

.industries-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.industries-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
}

.industries-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.industry-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.industry-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(229, 113, 18, 0.3);
    transform: translateY(-5px);
}

.industry-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 26px;
    margin: 0 auto 16px;
}

.industry-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.industry-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */

.polymers-gallery-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, var(--white) 100%);
}

.gallery-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.gallery-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 32px;
    margin: 0 auto 24px;
    box-shadow: 0 15px 45px rgba(229, 113, 18, 0.3);
}

.gallery-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
}

.gallery-subtitle {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.gallery-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.gallery-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item {
    min-width: 100%;
    position: relative;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #1a2347;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            135deg,
            rgba(39, 48, 108, 0.85) 0%,
            rgba(229, 113, 18, 0.75) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-overlay-content {
    text-align: center;
    color: var(--white);
}

.gallery-overlay-content i {
    font-size: 48px;
    margin-bottom: 12px;
    animation: zoomPulse 2s ease-in-out infinite;
}

@keyframes zoomPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.gallery-overlay-content p {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(229, 113, 18, 0.3);
}

.gallery-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(229, 113, 18, 0.4);
}

.gallery-btn:active {
    transform: translateY(-1px);
}

.gallery-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gallery-indicators {
    display: flex;
    gap: 10px;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-indicator:hover {
    background: #94a3b8;
}

.gallery-indicator.active {
    background: linear-gradient(135deg, var(--primary), #d96510);
    width: 30px;
    border-radius: 6px;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.polymers-cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 60px 40px;
}

.cta-background {
    position: absolute;
    inset: 0;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #27306c 0%, #1a2347 100%);
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at 30% 50%,
            rgba(229, 113, 18, 0.2) 0%,
            transparent 70%
    );
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 30px;
    margin: 0 auto 24px;
    box-shadow: 0 15px 45px rgba(229, 113, 18, 0.4);
}

.cta-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 14px;
    letter-spacing: -0.8px;
}

.cta-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary), #d96510);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(229, 113, 18, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(229, 113, 18, 0.4);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 992px) {
    .polymers-hero {
        height: 500px;
    }

    .polymers-page-title {
        font-size: 40px;
    }

    .polymers-hero-features {
        gap: 15px;
    }

    .polymers-intro-card {
        flex-direction: column;
        text-align: center;
    }

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

    .strength-card.primary-strength {
        grid-column: span 1;
    }

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

/* Update the existing responsive section around line 890 */

@media (max-width: 992px) {
    .polymers-hero {
        height: 500px;
    }

    .polymers-page-title {
        font-size: 40px;
    }

    .polymers-hero-features {
        gap: 15px;
    }

    .polymers-intro-card {
        flex-direction: column;
        text-align: center;
    }

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

    .strength-card.primary-strength {
        grid-column: span 1;
    }

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

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

@media (max-width: 768px) {
    .polymers-hero {
        height: 450px;
    }

    .polymers-page-title {
        font-size: 34px;
    }

    .polymers-page-subtitle {
        font-size: 16px;
    }

    .intro-card-title {
        font-size: 22px;
    }

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

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

    .gallery-image-wrapper {
        height: 350px;
    }

    .cta-card {
        padding: 50px 30px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}