@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --card-bg: rgba(26, 26, 26, 0.8);
    --border-color: rgba(212, 175, 55, 0.15);
    --text-bright: #f1f1f1;
    --text-muted: #aaaaaa;
    --text-dark: #1a1a1a;
    --footer-bg: #050505;
    --transition-speed: 0.3s;
    --gold: #D4AF37;
    --gold-light: #F9DF9F;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #141414;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overscroll-behavior: none;
    overscroll-behavior-y: contain;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-bright);
    background-color: var(--bg-dark);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    box-shadow: 0 0 10px var(--gold);
}

.section-title.left-align {
    text-align: left;
}

.section-title.left-align::after {
    left: 0;
    transform: none;
    margin-left: 0;
}


header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    color: white;
    padding: 0.5rem 0;
    position: relative;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: color var(--transition-speed);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--gold);
}


.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: transparent;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    transform: translateY(-3px);
    background-color: white;
    color: var(--text-dark);
    border-color: white;
}

.social-icons a:hover i {
    color: var(--gold);
}


.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #050505;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid var(--gold);
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--gold) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold) !important;
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: #000000 !important;
}

.btn-large {
    padding: 13px 30px;
    font-size: 0.95rem;
    min-width: 180px;
    text-align: center;
}




.about-content-right {
    flex: 1;
}

.company-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-bright);
}

.company-intro {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.company-description p {
    margin-bottom: 1.5rem;
}

.company-description strong {
    color: var(--gold);
    font-weight: 600;
}

.industries-section {
    padding: 80px 0;
    background-color: #111111;
}

.industries-section .section-title {
    color: var(--gold);
    margin-bottom: 15px;
}

.industries-section .section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
    font-weight: 300;
    line-height: 1.6;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5), 0 0 10px rgba(212, 175, 55, 0.1);
    transition: box-shadow 0.3s, transform 0.3s;
}

.solution-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    animation: floating 7s ease-in-out infinite reverse;
}

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

.solution-card:hover .card-img img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px 20px;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2980b9;
    font-weight: 600;
}

.card-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.link-arrow {
    color: #c0392b;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: gap 0.3s;
}

.link-arrow:hover {
    gap: 10px;
    color: #a03022;
}

.view-all-link {
    text-align: center;
    margin-top: 40px;
}

.view-all-link a {
    display: inline-block;
    background-color: var(--gold);
    color: white;
    padding: 12px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.view-all-link a:hover {
    background-color: #f1f1f1;
    color: #000000;
}


.seo-insights-section {
    background-color: #0c0c0c !important;
    color: #ccc !important;
    padding: 100px 0;
}

.seo-content-wrapper h2 {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

.seo-block-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 35px;
    align-items: center;
    width: 100%;
}

.seo-block:nth-child(even) .seo-block-grid {
    grid-template-columns: 1fr 1.8fr;
}

.seo-image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s ease;
}

.seo-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.seo-block:hover .seo-image-container {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.3);
}

.seo-block:hover .seo-image-container img {
    transform: scale(1.1);
}

.seo-text-container h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

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

.stat-box h4 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.stat-box p {
    color: white;
    font-weight: 600;
}


.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.vision-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vision-title {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.vision-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    hyphens: auto;
    word-break: break-word;
}

.vision-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--text-dark);
    color: var(--gold);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.vision-btn:hover {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    transform: translateY(-3px);
}

.contact-cta {
    padding: 80px 0;
    text-align: center;
    background-color: var(--bg-card);
}

.contact-info p {
    margin: 10px 0;
}


footer {
    background-color: var(--footer-bg);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: #999;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 15px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-cert-logos {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
}

.footer-cert-logos img {
    height: 70px;
    width: auto;
    object-fit: contain;
    background-color: var(--text-dark);
    padding: 10px 15px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-cert-logos img:hover {
    transform: scale(1.08);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    max-width: 1200px;
    margin: 0 auto;
}


@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sliderReveal {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes fadeOutContainer {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-30px);
        visibility: hidden;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFadeInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal-left {
    opacity: 0;
}

.reveal-right {
    opacity: 0;
}

.reveal-left.active-animate {
    animation: slideFadeInLeft 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.reveal-right.active-animate {
    animation: slideFadeInRight 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.product-image {
    position: relative;
    overflow: hidden;
    animation: floating 6s ease-in-out infinite;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(212, 175, 55, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    z-index: 2;
}

.product-image:hover::after {
    left: 200%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

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


@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

#whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 99999999;
    animation: bounce 2s ease-in-out 3;
    animation-delay: 1s;
}

#whatsapp-widget a:hover svg {
    transform: scale(1.1);
}

#whatsapp-cta {
    background-color: #25D366;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    margin-right: 15px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

#whatsapp-widget:hover #whatsapp-cta {
    opacity: 1;
}


.page-banner {
    background: linear-gradient(135deg, #050505 0%, #151515 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.product-categories {
    padding: 80px 0;
    background-color: var(--bg-card);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-card);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.all-products {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-item {
    display: flex;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5), 0 0 10px rgba(212, 175, 55, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.3);
}

.product-img {
    width: 120px;
    min-width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-details {
    padding: 20px;
    flex: 1;
}

.product-details h3 {
    color: var(--gold);
    margin-bottom: 0.25rem;
    font-size: 1.3rem;
}

.product-category {
    color: var(--text-bright);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.product-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1rem;
}

.product-features span {
    background-color: var(--bg-card);
    color: var(--gold);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.custom-products {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    color: white;
    text-align: center;
}

.custom-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.contact-hero {
    position: relative;
    background-image: url('images/contact.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 0;
    isolation: isolate;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: -1;
}

.contact-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.4rem;
    color: var(--gold);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

.contact-info-section {
    padding: 80px 0;
    background-color: #0c0c0c;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-info-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--gold);
    transition: transform 0.4s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
}

.contact-detail {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--gold);
    margin-top: 20px;
    font-weight: 600;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #111;
}

.contact-container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    align-items: flex-start;
}

.form-content {
    flex: 1.2;
}

.form-content h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.submit-btn {
    background-color: var(--gold);
    color: black;
    padding: 18px 50px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.map-hours-section {
    padding: 80px 0;
    background: #0c0c0c;
}

.map-hours-wrapper {
    display: flex;
    gap: 50px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.map-container {
    flex: 1.5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 500px;
    filter: grayscale(0.5) contrast(1.1);
}

.business-hours {
    flex: 1;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.business-hours h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gold);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.1rem;
}

.hours-list li.special {
    color: var(--gold);
    font-weight: 700;
    background-color: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px dashed rgba(212, 175, 55, 0.3);
}

.hours-list span:first-child {
    color: #fff;
}

.hours-list span:last-child {
    color: var(--gold);
}

.faq-section {
    padding: 80px 0;
    background-color: #111;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.faq-item {
    padding: 30px;
    background: rgba(26, 26, 26, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
    background: rgba(26, 26, 26, 0.6);
    transform: scale(1.02);
}

.faq-item h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}




@media (max-width: 992px) {


    .about-with-video {
        flex-direction: column;
        gap: 40px;
    }

    .seo-content-wrapper h2 {
        font-size: 2.2rem;
    }

    .seo-block-grid,
    .seo-block:nth-child(even) .seo-block-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .seo-block.reveal-right .seo-image-container {
        order: -1;
    }

    .seo-text-container h3 {
        font-size: 1.8rem;
    }

    .vision-title {
        font-size: 2.8rem;
    }

    .contact-container,
    .map-hours-wrapper {
        flex-direction: column;
    }

    .contact-hero h1 {
        font-size: 3rem;
    }
}

.logo-carousel-container {
    width: 100%;
    overflow: hidden;
    background-color: #1a1a1a;
    padding: 60px 0;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    margin: 40px 0;
}


.logo-carousel-container::before,
.logo-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #1a1a1a, transparent);
}

.logo-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #1a1a1a, transparent);
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scrollLogos 40s linear infinite;
}

.logo-slide {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.client-logo {
    max-width: 160px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: all 0.4s ease;
}

.client-logo:hover {
    transform: scale(1.1);
}

.logo-carousel-container:hover .logo-track {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .logo-carousel-container {
        padding: 40px 0;
    }

    .logo-slide {
        padding: 0 20px;
    }

    .client-logo {
        max-width: 120px;
        max-height: 45px;
    }

    .logo-carousel-container::before,
    .logo-carousel-container::after {
        width: 60px;
    }
}



.purpose-section {
    padding: 100px 0;
    background-image: url('images/business.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
}

.purpose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

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

.purpose-content h2 {
    color: white;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.purpose-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.purpose-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .purpose-section {
        padding: 60px 0;
    }

    .purpose-text {
        font-size: 1.1rem;
    }
}

.about-company-with-image {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/accurate.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 200px 0;
    color: white;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-glass-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-left: 8px solid #D4AF37;
    padding: 120px;
    border-radius: 40px;
    text-align: left;
    animation: fadeInUP 1s 0.4s both;
    box-shadow: 0 60px 150px rgba(0, 0, 0, 0.7);
}

@media (max-width: 900px) {
    .about-hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-glass-card {
        padding: 30px;
    }

    .hero-glass-card h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 900px) {



    header .container {
        flex-direction: column;
        padding: 15px;
    }

    .header-right {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .social-icons {
        justify-content: center;
    }

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

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

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

@media (max-width: 768px) {
    .logo-img {
        height: 60px;
        margin-bottom: 15px;
    }

    nav ul {
        gap: 15px;
    }

    nav ul li a {
        font-size: 0.9rem;
    }



    .section-title {
        font-size: 1.8rem;
    }

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

    .card-img {
        height: 180px;
    }

    .vision-section {
        padding: 70px 0;
        background-attachment: scroll;
    }

    .vision-title {
        font-size: 2.5rem;
    }

    .vision-description p {
        font-size: 1rem;
    }

    footer {
        padding: 50px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-cert-logos {
        justify-content: center;
        margin-bottom: 20px;
    }

    .footer-cert-logos img {
        height: 60px;
        padding: 8px 12px;
    }

    .copyright {
        padding-top: 20px;
    }

    .contact-info-grid,
    .faq-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .map-container iframe {
        height: 350px;
    }

    .business-hours h3 {
        font-size: 1.5rem;
    }

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

    .product-item {
        flex-direction: column;
    }

    .product-img {
        width: 100%;
        height: 180px;
    }

    .page-banner h1 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 50px;
    }

    nav ul {
        gap: 10px;
    }

    nav ul li a {
        font-size: 0.75rem;
        padding: 5px 8px;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
    }



    .vision-title {
        font-size: 2rem;
    }

    .vision-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-icon {
        font-size: 3rem;
    }

    .hours-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .map-container iframe {
        height: 250px;
    }

    .product-features {
        flex-direction: column;
        gap: 5px;
    }

    .product-features span {
        text-align: center;
    }

    .client-logo {
        height: 25px;
    }

    .logo-slide {
        padding: 0 10px;
    }

    .logo-carousel-container {
        padding: 20px 0;
    }

    #whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }

    #whatsapp-widget svg {
        width: 50px;
        height: 50px;
    }

    #whatsapp-cta {
        font-size: 12px;
        padding: 6px 15px;
    }
}


.showcase-card:hover {
    transform: translateY(-30px) !important;
    border-color: #D4AF37 !important;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.showcase-card:hover .hover-zoom {
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .showcase-card {
        transform: none !important;
        margin-bottom: 30px;
    }
}


.mission-simple {
    padding: 80px 0;
    background-color: #0c0c0c;
}

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

.mission-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.05);
    border-color: #D4AF37;
}

.mission-item h3 {
    color: #D4AF37;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.mission-item p {
    color: #aaa;
    line-height: 1.6;
    font-size: 1rem;
}

.stats-simple {
    padding: 60px 0;
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

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

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #D4AF37;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.stat-item .stat-label {
    font-size: 1.1rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {

    .mission-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}