/* ===== CSS Variables (Color Theme) ===== */
:root {
    --background: hsl(0, 0%, 96.1%); /* #F5F5F5 */
    --foreground: hsl(0, 0%, 20%); /* #333333 */
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(0, 0%, 20%);
    --primary: hsl(206, 100%, 24%); /* #00457C */
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(149, 83%, 20%); /* #0B5B30 */
    --secondary-foreground: hsl(0, 0%, 100%);
    --muted: hsl(210, 40%, 96.1%);
    --muted-foreground: hsl(215.4, 16.3%, 46.9%);
    --accent: hsl(83, 56%, 51%); /* #8CC63F */
    --accent-foreground: hsl(0, 0%, 20%);
    --accent-red: hsl(352, 100%, 42.9%); /* #D9001C */
    --border: hsl(214.3, 31.8%, 91.4%);
    --radius: 0.5rem;
    
    /* Fonts */
    --font-headline: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Modern Gradients */
    --gradient-primary: linear-gradient(135deg, #00457C 0%, #0066b3 100%);
    --gradient-accent: linear-gradient(135deg, #8CC63F 0%, #6fa32e 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 69, 124, 0.95) 0%, rgba(11, 91, 48, 0.85) 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    --gradient-shine: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(140, 198, 63, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #f5f5f5 0%, #e8eef5 50%, #f0f8f0 100%);
    background-size: 400% 400%;
    animation: gradientFlow 20s ease infinite;
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 69, 124, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(140, 198, 63, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(11, 91, 48, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(0, 102, 179, 0.06) 0%, transparent 35%),
        radial-gradient(circle at 90% 20%, rgba(140, 198, 63, 0.07) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
    animation: gradientPulse 15s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 60px,
            rgba(140, 198, 63, 0.015) 60px,
            rgba(140, 198, 63, 0.015) 120px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 60px,
            rgba(0, 69, 124, 0.015) 60px,
            rgba(0, 69, 124, 0.015) 120px
        );
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== Utility Classes ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

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

.text-large {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    max-width: 48rem;
    margin: 0 auto;
}

.text-underline {
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    font-weight: 700;
}

/* ===== Grid Layouts ===== */
.grid-2-col {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .grid-2-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 6rem;
    }
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.desktop-header {
    display: none;
}

@media (min-width: 768px) {
    .desktop-header {
        display: block;
    }
    .mobile-header {
        display: none;
    }
}

.header-content {
    display: flex;
    align-items: center;
    height: 9rem;
    padding: 0.5rem 0;
}

.mobile-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 9rem;
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-right: 2rem;
    height: 100%;
}

.logo {
    height: 8rem;
    width: auto;
}

.logo-rotating {
    animation: logoRotate 15s linear infinite;
    transform-origin: center;
}

@keyframes logoRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.company-name {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.company-name-bold {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin: 0;
}

.company-name-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    color: #000000;
    letter-spacing: 0.3px;
    line-height: 1.2;
    margin: 0;
}

.company-tagline {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted-foreground);
    letter-spacing: 0.3px;
    line-height: 1.3;
    margin: 0;
    margin-top: 0.3rem;
}

@media (max-width: 767px) {
    .logo-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        height: 100%;
    }
    
    .logo {
        height: 5.5rem;
    }
    
    .company-name {
        text-align: center;
        gap: 0.1rem;
    }
    
    .company-name-bold {
        font-size: 0.8rem;
    }
    
    .company-name-subtitle {
        font-size: 0.6rem;
    }
    
    .company-tagline {
        font-size: 0.65rem;
        margin-top: 0.2rem;
    }
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.nav-link {
    position: relative;
    color: rgba(51, 51, 51, 0.8);
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--primary);
}

/* ===== Mobile Bottom Navigation ===== */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 4rem;
    border-top: 1px solid rgba(140, 198, 63, 0.2);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .mobile-nav {
        display: none;
    }
}

.mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: all 0.2s;
    text-align: center;
}

.mobile-nav-link:hover {
    background-color: rgba(140, 198, 63, 0.2);
}

.mobile-nav-link.active {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.mobile-nav-link svg {
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: 0.25rem;
}

.mobile-nav-link span {
    font-size: 0.75rem;
    letter-spacing: -0.025em;
}

/* ===== Main Content ===== */
.main-content {
    flex: 1;
    margin-top: 0;
}

@media (max-width: 767px) {
    .main-content {
        margin-bottom: 4rem; /* Space for mobile bottom nav */
    }
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 69, 124, 0.85) 0%, rgba(11, 91, 48, 0.75) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 10;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--background), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 20;
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text {
    max-width: 64rem;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out forwards, textGlow 3s ease-in-out infinite alternate;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(140, 198, 63, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(140, 198, 63, 0.3);
    }
    100% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 60px rgba(140, 198, 63, 0.5);
    }
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    background: linear-gradient(90deg, #8CC63F, #a8d96e, #8CC63F);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out forwards, gradient-shift 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(140, 198, 63, 0.5);
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.4rem;
    }
}

.hero-button {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== Sections ===== */
.section {
    width: 100%;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 8rem 0;
    }
}

.section.bg-card {
    background: 
        radial-gradient(circle at 0% 0%, rgba(140, 198, 63, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0, 69, 124, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    position: relative;
    backdrop-filter: blur(5px);
}

.section.bg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(140, 198, 63, 0.4), rgba(0, 69, 124, 0.3), transparent);
    box-shadow: 0 1px 10px rgba(140, 198, 63, 0.2);
}

.section.bg-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 69, 124, 0.3), rgba(140, 198, 63, 0.4), transparent);
    box-shadow: 0 -1px 10px rgba(0, 69, 124, 0.2);
}

.section-title {
    font-family: var(--font-headline);
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-title-secondary {
    font-family: var(--font-headline);
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #00457C 0%, #0066b3 50%, #8CC63F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

@media (min-width: 640px) {
    .section-title-secondary {
        font-size: 2.25rem;
    }
}

.section-title-centered {
    font-family: var(--font-headline);
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #00457C 0%, #0066b3 50%, #8CC63F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

@media (min-width: 640px) {
    .section-title-centered {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .section-title-centered {
        font-size: 3rem;
    }
}

.section-header {
    margin-bottom: 3rem;
}

.section-footer {
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .section-footer {
        margin-top: 6rem;
    }
}

.section-single {
    max-width: 64rem;
    margin: 0 auto;
}

.footer-tagline {
    font-family: var(--font-headline);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary);
}

@media (min-width: 768px) {
    .footer-tagline {
        font-size: 1.25rem;
    }
}

.footer-subtitle {
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

/* ===== Prose (Text Content) ===== */
.prose {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: none;
    line-height: 1.9;
}

.prose p {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.prose p:nth-child(1) {
    animation-delay: 0.2s;
}

.prose p:nth-child(2) {
    animation-delay: 0.4s;
}

.prose p:nth-child(3) {
    animation-delay: 0.6s;
}

.prose strong {
    position: relative;
    display: inline-block;
}

.prose-center {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

/* ===== Cards ===== */
.card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(140, 198, 63, 0.1);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shine);
    transition: left 0.7s;
    z-index: 1;
}

.card:hover::before {
    left: 100%;
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.card:hover::after {
    opacity: 1;
}

.card-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent);
}

.card-header {
    padding: 1.5rem;
}

.card-title {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.card-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* ===== Checklist ===== */
.checklist {
    list-style: none;
    padding: 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checklist-item:hover .check-circle {
    animation: drawCircle 0.5s ease-in-out forwards;
}

.checklist-item:hover .check-path {
    animation: drawCheck 0.3s ease-in-out forwards;
}

.check-icon-wrapper {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    height: 1.25rem;
    width: 1.25rem;
    flex-shrink: 0;
}

.check-icon {
    width: 100%;
    height: 100%;
}

.check-circle-bg {
    stroke: var(--primary);
    opacity: 0.3;
}

.check-circle {
    stroke: var(--primary);
    transform-origin: center;
    transform: rotate(-90deg);
}

.check-path {
    stroke: var(--primary);
}

.checklist-item span {
    color: var(--muted-foreground);
    transition: color 0.3s;
}

.checklist-item:hover span {
    color: var(--foreground);
}

/* ===== Image Container ===== */
.image-container {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid transparent;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-container::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-accent);
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.image-container:hover::before {
    opacity: 1;
}

.image-container:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

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

.image-container:hover .section-image {
    transform: scale(1.1) rotate(1deg);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 69, 124, 0.2), rgba(140, 198, 63, 0.2));
    opacity: 0;
    transition: opacity 0.4s;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta {
    background: var(--gradient-accent);
    color: white;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    box-shadow: var(--shadow-md);
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-cta:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon {
    transition: transform 0.3s;
}

.btn-with-icon:hover .btn-icon {
    transform: translateX(4px);
}

/* ===== Services Carousel ===== */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 3rem;
}

.carousel {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    padding: 0.25rem;
}

@media (min-width: 768px) {
    .carousel-item {
        min-width: 50%;
    }
}

@media (min-width: 1024px) {
    .carousel-item {
        min-width: 33.333%;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

@media (max-width: 639px) {
    .carousel-btn {
        display: none;
    }
    .carousel-container {
        padding: 0;
    }
}

/* ===== Service Cards ===== */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    background: white;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    transform: translateY(-12px) scale(1.03);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 20px;
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.service-title {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    font-weight: 700;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.list-icon {
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    height: 1rem;
    width: 1rem;
    flex-shrink: 0;
    color: var(--primary);
    opacity: 0.5;
}

.service-summary {
    color: var(--muted-foreground);
    margin-top: 1rem;
    font-size: 0.875rem;
    font-style: italic;
}

/* ===== Services Grid (Services Page) ===== */
.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card-large {
    background-color: var(--background);
}

/* ===== Page Header (About/Services Pages) ===== */
.page-header {
    position: relative;
    width: 100%;
    height: 15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (min-width: 768px) {
    .page-header {
        height: 20rem;
    }
}

.page-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 10;
    padding: 0 1rem;
}

.page-header-title {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .page-header-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .page-header-title {
        font-size: 3.75rem;
    }
}

/* ===== Page Intro (Services Page) ===== */
.page-intro {
    padding-top: 4rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .page-intro {
        padding-top: 6rem;
        padding-bottom: 5rem;
    }
}

.page-title {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .page-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .page-title {
        font-size: 3.75rem;
    }
}

.page-subtitle {
    color: var(--muted-foreground);
    font-size: 1rem;
    margin: 0 auto;
    max-width: 48rem;
}

@media (min-width: 768px) {
    .page-subtitle {
        font-size: 1.25rem;
    }
}

/* ===== Vision/Mission Cards ===== */
.vision-mission-grid {
    max-width: 80rem;
    margin: 0 auto;
    gap: 2rem;
}

@media (min-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vision-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s;
}

.vision-card:hover::before {
    opacity: 0.05;
}

@media (min-width: 768px) {
    .vision-card {
        padding: 3rem;
    }
}

.vision-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-12px) scale(1.03);
    border-color: var(--accent);
}

.vision-icon {
    width: 4rem;
    height: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.vision-card:hover .vision-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.vision-icon svg {
    width: 100%;
    height: 100%;
}

.vision-title {
    font-family: var(--font-headline);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.vision-card p {
    color: var(--muted-foreground);
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

/* ===== Core Values Section ===== */
.values-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

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

.value-icon-wrapper {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: var(--background);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.value-item:hover .value-icon-wrapper {
    border-color: var(--accent);
    transform: scale(1.1) translateY(-8px);
}

.value-icon-wrapper svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary);
    transition: color 0.3s;
}

.value-item:hover .value-icon-wrapper svg {
    color: var(--accent);
}

.value-title {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    font-weight: 600;
}

.value-description {
    color: var(--muted-foreground);
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #0B5B30 0%, #004a2f 50%, #00457C 100%);
    color: var(--secondary-foreground);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(140, 198, 63, 0.5), transparent);
}

.footer-content {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.footer-about {
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 24rem;
    margin-bottom: 1rem;
}

.badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-foreground);
    transition: background-color 0.3s;
}

.badge:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-links {
    display: flex;
    gap: 1rem;
    padding-top: 0.5rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--secondary-foreground);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-top: 0.5rem;
}

@media (min-width: 768px) {
    .footer-links-grid {
        grid-column: span 1;
    }
}

@media (min-width: 1024px) {
    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-column: span 2;
    }
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary-foreground);
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-foreground);
}

.footer-address {
    font-style: normal;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-address p {
    margin-bottom: 0.75rem;
}

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

.footer-address a:hover {
    color: var(--secondary-foreground);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drawCircle {
    from {
        stroke-dasharray: 0, 1000;
    }
    to {
        stroke-dasharray: 1000, 0;
    }
}

@keyframes drawCheck {
    from {
        stroke-dasharray: 0, 100;
    }
    to {
        stroke-dasharray: 100, 0;
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ===== Industries Grid ===== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-accent);
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.industry-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

.industry-card:hover .industry-image {
    transform: scale(1.15);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(to top, rgba(0, 69, 124, 0.95) 0%, rgba(0, 69, 124, 0.6) 50%, transparent 100%);
}

.industry-title {
    font-family: var(--font-headline);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

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

.industry-desc {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.industry-card:hover .industry-desc {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Gallery Grid ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(140, 198, 63, 0.3), rgba(0, 69, 124, 0.3));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 10;
}

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

.gallery-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(140, 198, 63, 0.2);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-content {
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h4 {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== Expertise Grid ===== */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.expertise-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.expertise-card:hover .expertise-image {
    transform: scale(1.15);
}

.expertise-content {
    padding: 1.5rem;
}

.expertise-content h3 {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.expertise-content p {
    color: var(--muted-foreground);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== Service Highlights ===== */
.service-highlights {
    margin-top: 3rem;
}

.highlight-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.highlight-row:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

@media (min-width: 768px) {
    .highlight-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .highlight-row-reverse {
        direction: rtl;
    }
    
    .highlight-row-reverse > * {
        direction: ltr;
    }
}

.highlight-image {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.highlight-row:hover .highlight-img {
    transform: scale(1.1);
}

.highlight-content {
    padding: 1rem;
}

.highlight-title {
    font-family: var(--font-headline);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.highlight-content > p {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight-features {
    list-style: none;
    padding: 0;
}

.highlight-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
    font-size: 1rem;
}

.highlight-features li svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ===== ISO Certifications Section (About Page) ===== */
.iso-certifications-section {
    margin-top: 3rem;
}

.iso-certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.iso-cert-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-md);
}

.iso-cert-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

.iso-cert-image-wrapper {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
}

.iso-cert-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.4s ease;
}

.iso-cert-card:hover .iso-cert-image-wrapper img {
    transform: scale(1.05);
}

.iso-cert-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-align: center;
    padding: 2rem;
}

.iso-cert-placeholder svg {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.iso-cert-placeholder p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted-foreground);
}

.iso-cert-info {
    padding: 2rem;
    text-align: center;
}

.iso-cert-title {
    font-family: var(--font-headline);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.iso-cert-type {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.iso-cert-desc {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* ADNOC Approval Card */
.adnoc-approval-section {
    margin-top: 2rem;
}

.adnoc-card {
    background: linear-gradient(135deg, #8CC63F 0%, #6fa32e 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

.adnoc-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.adnoc-badge {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.adnoc-badge svg {
    width: 3rem;
    height: 3rem;
    color: var(--accent);
}

.adnoc-content {
    flex: 1;
    color: white;
}

.adnoc-title {
    font-family: var(--font-headline);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.adnoc-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
    .adnoc-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .iso-certs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .iso-cert-image-wrapper {
        height: 250px;
    }
}

/* ===== Decorative Shapes & Orbs ===== */
.decorative-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 69, 124, 0.15), transparent 70%);
    top: -100px;
    right: -150px;
    animation: float 25s ease-in-out infinite, colorShift 15s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(140, 198, 63, 0.12), transparent 70%);
    bottom: -100px;
    left: -120px;
    animation: float 20s ease-in-out infinite reverse, colorShift 12s ease-in-out infinite;
}

@keyframes colorShift {
    0%, 100% {
        opacity: 0.8;
        filter: blur(60px) hue-rotate(0deg);
    }
    50% {
        opacity: 1;
        filter: blur(80px) hue-rotate(20deg);
    }
}

/* ===== Animated Background Patterns ===== */
.section {
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(circle, rgba(0, 69, 124, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    animation: dotMove 60s linear infinite;
}

@keyframes dotMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 30px;
    }
}

/* ===== Enhanced Scroll Progress Indicator ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-accent);
    z-index: 9999;
    transform-origin: left;
    box-shadow: 0 0 15px rgba(140, 198, 63, 0.6), 0 0 30px rgba(140, 198, 63, 0.3);
}

/* ===== Responsive Utilities ===== */
@media (max-width: 767px) {
    .section {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .industries-grid,
    .gallery-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .industry-image-wrapper,
    .highlight-image {
        height: 250px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .highlight-row {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .decorative-shape {
        display: none;
    }
}

