/* ===== CSS Variables ===== */
:root {
    --primary: #003d52;
    --primary-light: #006d77;
    --primary-dark: #002634;
    --secondary: #0897b2;
    --accent: #00b4d8;
    --dark: #1a1a2e;
    --gray-900: #1f2937;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
}

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

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

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

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

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

.btn-light:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--primary);
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    height: 80px;
}

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

.header.scrolled .logo {
    color: var(--white);
}

.logo-icon {
    font-size: 28px;
    color: var(--accent);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    border-radius: 6px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .nav-link {
    color: var(--white);
}

.header.scrolled .nav-link:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link i {
    font-size: 10px;
    transition: var(--transition);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--gray-700);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--gray-100);
    color: var(--primary);
    padding-left: 24px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta .btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ===== Hero Carousel ===== */
.hero {
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.carousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.carousel-slides {
    position: relative;
    height: 100%;
}

/* Hero Canvas Background */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    z-index: 0;
}

/* Centered Hero Content */
.hero-content.centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content.centered .hero-subtitle {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-content {
    position: relative;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    box-sizing: border-box;
}

.slide-content .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 60px;
}

.hero-content {
    flex: 1;
    color: var(--white);
    animation: fadeInUp 0.8s ease forwards;
    width: 100%;
}

.carousel-slide:not(.active) .hero-content {
    animation: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 540px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 0 0 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Real Globe Styles */
.real-globe {
    width: 400px;
    height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.4) 0%, rgba(0, 180, 216, 0.1) 40%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.globe-sphere {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/2/22/Earth_Western_Hemisphere_transparent_background.png/600px-Earth_Western_Hemisphere_transparent_background.png') center/cover;
    box-shadow:
        inset -30px -30px 60px rgba(0, 0, 0, 0.4),
        inset 20px 20px 40px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(0, 180, 216, 0.5),
        0 0 120px rgba(0, 180, 216, 0.3);
    animation: rotate-globe 30s linear infinite;
    position: relative;
    z-index: 2;
}

.globe-sphere::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 10%;
    width: 30%;
    height: 20%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.globe-sphere::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(0,0,0,0.3) 100%);
}

@keyframes rotate-globe {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.globe-ring {
    position: absolute;
    border: 2px solid rgba(0, 180, 216, 0.3);
    border-radius: 50%;
    animation: rotate-ring 20s linear infinite;
}

.globe-ring.ring-1 {
    width: 380px;
    height: 380px;
    border-style: dashed;
    animation-duration: 25s;
}

.globe-ring.ring-2 {
    width: 420px;
    height: 160px;
    border-color: rgba(0, 200, 255, 0.4);
    transform: rotateX(75deg);
    animation-duration: 15s;
    animation-direction: reverse;
}

.globe-ring.ring-3 {
    width: 450px;
    height: 180px;
    border-color: rgba(0, 255, 200, 0.2);
    transform: rotateX(75deg) rotateY(20deg);
    animation-duration: 20s;
}

@keyframes rotate-ring {
    0% { transform: rotateX(75deg) rotateZ(0deg); }
    100% { transform: rotateX(75deg) rotateZ(360deg); }
}

.globe-ring.ring-1 {
    animation-name: rotate-ring-1;
}

@keyframes rotate-ring-1 {
    0% { transform: rotateZ(0deg); }
    100% { transform: rotateZ(360deg); }
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    transform: translateY(50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    backdrop-filter: blur(4px);
}

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

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--white);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ===== Stats Section ===== */
.stats {
    background: var(--primary);
    padding: 60px 0;
}

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

.stat-item {
    color: var(--white);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent);
}

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

/* ===== Services Section ===== */
.services {
    padding: 80px 0 0;
    background: var(--gray-100);
}

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--secondary);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* Services Carousel */
.services-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 0;
}

.services-track {
    display: flex;
    transition: transform 0.5s ease;
}

.service-slide {
    min-width: 100%;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 600px;
    padding: 40px;
}

.service-slide-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.service-slide-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-slide-content p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
}

.services-prev,
.services-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.services-prev {
    left: 20px;
}

.services-next {
    right: 20px;
}

.services-prev:hover,
.services-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.services-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.services-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.services-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.services-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* ===== Industries Section ===== */
.industries {
    padding: 100px 0;
    background: var(--white);
}

.industries-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 180px);
    gap: 20px;
}

.industry-block {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.industry-block:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.industry-block.large {
    grid-column: span 2;
    grid-row: span 2;
}

.industry-block.medium {
    grid-column: span 2;
    grid-row: span 1;
}

.industry-block.small {
    grid-column: span 1;
    grid-row: span 1;
}

.industry-block.tall {
    grid-column: span 1;
    grid-row: span 2;
}

.block-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: var(--white);
    z-index: 2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.block-content i {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
    opacity: 0.9;
}

.industry-block.small .block-content i {
    font-size: 24px;
    margin-bottom: 6px;
}

.block-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.industry-block.small .block-content h3 {
    font-size: 16px;
}

.block-content p {
    font-size: 13px;
    opacity: 0.85;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.industry-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    z-index: 1;
}

/* ===== Certifications Section ===== */
.certifications {
    padding: 100px 0;
    background: var(--white);
}

.certifications-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.certification-badge {
    text-align: center;
    padding: 30px 40px;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-badge:hover {
    transform: translateY(-5px);
}

.certification-badge img {
    max-width: 200px;
    max-height: 120px;
    object-fit: contain;
}

/* ===== CTA Section ===== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-info-cta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-info-cta .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 18px;
}

.contact-info-cta .contact-item i {
    font-size: 20px;
    color: var(--accent);
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    padding: 80px 0 30px;
    color: var(--gray-300);
}

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

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

.footer-links ul li a {
    font-size: 15px;
    color: var(--gray-300);
}

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

.footer-contact ul li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
}

.footer-contact ul li i {
    color: var(--secondary);
    margin-top: 4px;
}

.footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand-simple {
    flex: 1;
    max-width: 400px;
}

.footer-brand-simple .logo {
    color: var(--white);
    margin-bottom: 16px;
    display: inline-flex;
}

.footer-brand-simple p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-300);
}

.footer-contact-simple {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-simple .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-300);
}

.footer-contact-simple .contact-item i {
    color: var(--secondary);
    width: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .industries-bento {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }

    .industry-block.large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 250px;
    }

    .industry-block.tall {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 200px;
    }

    .industry-block.medium,
    .industry-block.small {
        min-height: 180px;
    }
}

@media (max-width: 992px) {
    .nav-menu,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile Menu */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--primary);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 0;
    }

    .nav-menu.active .nav-item {
        width: 100%;
    }

    .nav-menu.active .nav-link {
        padding: 14px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--white);
    }

    .nav-menu.active .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }

    .nav-menu.active .nav-item.active .dropdown-menu {
        display: block;
    }

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

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

    .hero-image {
        display: none;
    }

    .real-globe {
        display: none;
    }

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

@media (max-width: 768px) {
    .carousel {
        height: 100vh;
        min-height: 500px;
    }

    .slide-content {
        padding: 80px 15px 40px;
    }

    .hero-content.centered {
        max-width: 100%;
        padding: 0;
    }

    .hero-content.centered .hero-subtitle {
        max-width: 100%;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
        max-width: 100%;
    }

    .service-slide {
        height: 350px;
    }

    .service-slide-content {
        padding: 20px;
    }

    .service-slide-content h3 {
        font-size: 24px;
    }

    .service-slide-content p {
        font-size: 15px;
    }

    .service-slide-icon {
        width: 80px;
        height: 80px;
    }

    .service-slide-icon i {
        font-size: 32px;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

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

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

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

    .industry-block {
        min-height: 180px;
    }

    .industry-block.large,
    .industry-block.medium,
    .industry-block.tall,
    .industry-block.small {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 180px;
    }

    .block-content {
        padding: 15px;
    }

    .block-content i {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .block-content h3 {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .block-content p {
        font-size: 12px;
        line-height: 1.4;
    }

    .certifications {
        padding: 60px 0;
    }

    .certifications-grid {
        gap: 20px;
        flex-wrap: nowrap;
    }

    .certification-badge {
        padding: 15px;
        flex: 1;
    }

    .certification-badge img {
        max-width: 120px;
        max-height: 80px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .footer-simple {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-brand-simple {
        max-width: 100%;
    }

    .footer-brand-simple .logo {
        justify-content: center;
    }

    .footer-contact-simple {
        align-items: center;
    }

    .contact-info-cta {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .carousel {
        height: 100vh;
        min-height: 480px;
    }

    .slide-content {
        padding: 70px 12px 30px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .service-slide-content {
        padding: 15px;
    }

    .service-slide-content h3 {
        font-size: 20px;
    }

    .service-slide-content p {
        font-size: 14px;
    }

    .stat-number {
        font-size: 36px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .services-prev,
    .services-next {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .services-prev {
        left: 10px;
    }

    .services-next {
        right: 10px;
    }

    .industries-bento {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .industry-block,
    .industry-block.large,
    .industry-block.medium,
    .industry-block.tall,
    .industry-block.small {
        min-height: 150px;
    }

    .block-content {
        padding: 12px;
    }

    .block-content i {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .block-content h3 {
        font-size: 15px;
    }

    .block-content p {
        font-size: 11px;
    }

    .certifications-grid {
        gap: 10px;
    }

    .certification-badge {
        padding: 10px;
    }

    .certification-badge img {
        max-width: 100px;
        max-height: 60px;
    }
}
