@font-face {
    font-family: 'AvenirNext';
    src: url('font/AvenirNextLTPro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'AvenirNext';
    src: url('font/AvenirNextLTPro-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'AvenirNext';
    src: url('font/AvenirNextLTPro-It.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}


:root {
    --primary-color: #0057b7;
    /* Pantone 2935 CP */
    --primary-dark: #003d82;
    --primary-light: #f0f7ff;
    --accent-color: #ffb400;
    /* Warm gold for contrast */
    --text-color: #2c3e50;
    --heading-color: #1a2a3a;
    --bg-color: #ffffff;
    --light-gray: #f8fbff;
    --border-color: #dbe9f6;
    --pantone-blue: #0057b7;

    --font-heading: 'AvenirNext', sans-serif;
    --font-body: 'AvenirNext', sans-serif;


    --transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-fast: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.15);
    --glass-blur: blur(15px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Subpage Utilities */
.page-title-section {
    background: url('images/header.jpeg') no-repeat center center / cover !important;
    padding: 160px 0 100px !important;
    position: relative;
    overflow: hidden;
}

.page-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-title-section .container {
    position: relative;
    z-index: 2;
}

.page-title-section h1 {
    color: #fff !important;
    font-size: 56px;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.page-title-section .sub-title {
    color: rgba(255, 255, 255, 0.9) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.8;
    font-size: 17px;
    background-color: var(--bg-color);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1300px;
    /* Wider container */
    margin: 0 auto;
    padding: 0 30px;
}

.section {
    padding: 100px 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.3;
}


.section-title {
    margin-bottom: 60px;
    position: relative;
    text-align: center;
}

.sub-title {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--primary-color);
    font-size: 20px;
    display: block;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.section-title h2 {
    font-size: 48px;
    text-transform: capitalize;
}

.text-center {
    text-align: center;
}

/* --- Advanced Reveals 2026 --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.separator {
    width: 100px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 20px auto 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    border-radius: 50px;
    /* Modern rounded buttons */
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 87, 183, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 87, 183, 0.4);
    color: #fff;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.main-header.scrolled {
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.main-header.scrolled .logo a {
    color: #000;
}

.main-header.scrolled .main-nav a {
    color: #333;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 40px;
}

/* Hide mobile elements on Desktop */
.mobile-contact-info {
    display: none;
}

.mobile-menu-logo {
    display: none;
}


/* Mobile Menu Wrapper - Desktop Logic */
.mobile-menu-wrapper {
    display: contents;
    /* Shows children as direct flex items */
}

/* Split Nav Layout */
.main-nav {
    flex: 1;
}

.nav-left {
    text-align: right;
    padding-right: 30px;
    order: 1;
}

.logo {
    flex: 0 0 auto;
    text-align: center;
    padding: 0 20px;
    order: 2;
    z-index: 1001;
}

.nav-right {
    text-align: left;
    padding-left: 30px;
    order: 3;
}

/* Split Nav Layout */
.main-nav {
    flex: 1;
}

.nav-left {
    text-align: right;
    /* Links close to logo */
    padding-right: 30px;
}

.nav-right {
    text-align: left;
    /* Links close to logo */
    padding-left: 30px;
    display: flex;
    align-items: center;
}

.logo {
    flex: 0 0 auto;
    text-align: center;
    padding: 0 20px;
}

.logo a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 70px;
    width: auto;
    transition: var(--transition);

}

.main-header.scrolled .logo img {
    height: 50px;
}


.main-nav ul {
    display: flex;
    /* Center align items vertically */
    align-items: center;
}

.nav-left ul {
    justify-content: flex-end;
    /* Push to right (towards logo) */
}

.nav-right ul {
    justify-content: flex-start;
    /* Push to left (towards logo) */
}

.main-nav li {
    margin: 0 20px;
    /* Reduced spacing */
}

.main-nav a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #fff;
    position: relative;
}

/* Hover underline effect */
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-header.scrolled .main-nav a:hover {
    color: var(--primary-color);
}

.main-header.scrolled .main-nav a::after {
    background-color: var(--primary-color);
}

.header-social {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.header-social a {
    color: #fff;
    font-size: 16px;
}

.main-header.scrolled .header-social a {
    color: #333;
}

.header-social a:hover,
.main-header.scrolled .header-social a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* --- Cinematic Slider 2026 --- */
.slider-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #050505;
}

.grain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3FfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3/filter%3E%3rect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3/svg%3E");
}

.slider-container {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
}

.slide-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
}

.slide.active .slide-bg {
    animation: kenBurns 18s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.elegant-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.slide-inner {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.slide-content {
    max-width: 650px;
    color: #fff;
    text-align: left;
    position: relative;
    transition: transform 0.1s ease-out, left 0.1s ease-out, top 0.1s ease-out;
}

.content-wrapper>* {
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .content-wrapper .slide-subtitle {
    animation: fadeUpStaggered 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.5s;
}

.slide.active .content-wrapper .slide-title {
    animation: fadeUpStaggered 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.7s;
}

.slide.active .content-wrapper .slide-description {
    animation: fadeUpStaggered 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.9s;
}

.slide.active .content-wrapper .slide-actions {
    animation: fadeUpStaggered 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 1.1s;
}

@keyframes fadeUpStaggered {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 84px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff !important;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}


.slide-description {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-premium {
    display: inline-block;
    padding: 18px 45px;
    background: #fff;
    color: #000;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-premium:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 180, 0, 0.3);
}

/* Slider Navigation Dots */
.slider-navigation {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.nav-dots {
    display: flex;
    gap: 20px;
    align-items: center;
}

.dot {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease;
}

.dot span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #fff;
    transition: width 0s linear;
}

.dot.active {
    background: rgba(255, 255, 255, 0.3);
}

.dot.active span {
    width: 100%;
    transition: width 7s linear;
}

@media (max-width: 768px) {
    .slide-bg {
        background-position: 85% center;
    }

    .grain-overlay {
        display: none !important;
    }

    .slide-content {
        max-width: 80%;
    }

    .elegant-overlay {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    }

    .slide-title {
        font-size: 52px;
    }

    .slide-inner {
        padding: 0 30px;
    }
}

/* Featured Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

/* Modern Product Cards 2026 - Refined */
.product-card {
    transition: var(--transition), opacity 0.4s ease, transform 0.4s ease;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    position: relative;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.product-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 20px;
}

.product-image img {
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    border-radius: 20px;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .product-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(2px);
    }

    .product-overlay .btn {
        transform: scale(0.9);
    }
}

.product-info {
    text-align: center;
    padding: 0 15px 25px;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.product-info p {
    font-family: var(--font-body);
    font-size: 14px;
    color: #888;
}

.price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
    display: block;
}

/* About Preview */
.about-preview {
    background-color: #fff;
}

.about-image {
    flex: 1;
    padding-right: 50px;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: url('images/FFFF.png') no-repeat center center / contain;
    opacity: 1;
    z-index: -1;
    transition: var(--transition);
    filter: brightness(0.8);
}

.about-image-wrapper::after {
    display: none;
}

.about-image-wrapper .decorative-lines {
    display: none;
}

.about-image img {
    border-radius: 20px;
    /* Increased for more oval look */
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
    width: 100%;
}

.about-image img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.15));
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-content p {
    color: #666;
    margin-bottom: 30px;
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
    /* Gradient blue background */
    border-top: none;
    padding: 100px 0 40px;
    color: rgba(255, 255, 255, 0.7);
    /* Soft white/blue text */
    margin-top: -1px;
    position: relative;
    overflow: hidden;
}

.footer-bg-logo {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 500px;
    height: 500px;
    background: url('images/FFFF.png') no-repeat center center / contain;
    opacity: 0.2;
    filter: brightness(0) invert(1);
    z-index: 0;
    pointer-events: none;
}

.footer-logo {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.footer-logo img {
    transition: var(--transition);
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: #b8b8b8;
    /* Light gray paragraphs */
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #b8b8b8;
    /* Light gray links */
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-3px);
}

/* Wave Dividers */
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px;
    /* Prevent gap */
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider svg path {
    fill: #ffffff;
    /* Default white fill */
}

/* Gray wave variant */
.wave-divider.wave-gray {
    background-color: #ffffff;
    /* White background */
}

.wave-divider.wave-gray svg path {
    fill: var(--light-gray);
}

/* Reverse Gray wave variant */
.wave-divider.wave-gray-reverse {
    background-color: var(--light-gray);
}

.wave-divider.wave-gray-reverse svg path {
    fill: var(--bg-color);
}



/* Dark wave variant for footer */
.wave-divider.wave-dark {
    background-color: var(--pantone-blue);
    /* Match footer blue background */
}

.wave-divider.wave-dark svg path {
    fill: var(--light-gray);
}

/* Contact Grid */
.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .contact-grid {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .about-image {
        padding-right: 0 !important;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
        /* Ensure it doesn't exceed screen width */
        box-sizing: border-box;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper {
        padding: 30px 15px;
        /* Further reduce padding for small screens */
    }
}

/* Responsive wave height */
@media (max-width: 768px) {
    .wave-divider svg {
        height: 40px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .logo img {
        height: 50px;
    }

    .main-header.scrolled .logo img {
        height: 40px;
    }


    .mobile-menu-wrapper {
        display: none;
        /* Hidden by default */
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #fff;
        z-index: 2000;
        /* High z-index to cover everything */
        flex-direction: column;
        justify-content: center;
        /* Center items vertically */
        align-items: center;
        padding: 40px 20px;
    }

    .mobile-menu-wrapper.active {
        display: flex;
    }

    /* Mobile Menu Logo */
    .mobile-menu-logo {
        display: block;
        text-align: center;
        margin-bottom: 20px;
        /* Push navs down slightly */
    }

    .mobile-menu-logo img {
        height: 60px;
        width: auto;
        margin: 0 auto;
    }


    .mobile-menu-logo a {
        font-family: var(--font-heading);
        font-size: 32px;
        font-weight: 700;
        color: #000;
        letter-spacing: -1px;
    }

    /* Contact Info in Mobile Menu */
    .mobile-contact-info {
        display: block;
        /* Make sure it's visible! */
        margin-top: 40px;
        text-align: center;
        border-top: 1px solid #eee;
        padding-top: 20px;
        width: 80%;
    }

    .mobile-contact-info h3 {
        font-family: var(--font-heading);
        font-size: 20px;
        margin-bottom: 15px;
        color: #000;
    }

    .mobile-contact-info p {
        font-family: var(--font-body);
        font-size: 14px;
        color: #666;
        margin-bottom: 5px;
    }

    /* Reset Styles for Mobile Navs */
    .main-nav {
        display: block;
        position: static;
        width: 100%;
        background: transparent;
        box-shadow: none;
        padding: 0;
        border: none;
        text-align: center;
        flex: 0 0 auto;
        /* Stop expanding to fill space */
    }

    .header-container .main-nav {
        padding: 0;
        border: none;
        flex: 0 0 auto;
        /* Override desktop flex:1 */
    }

    .nav-left,
    .nav-right {
        padding: 0;
        text-align: center;
        order: unset;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    .main-nav li {
        margin: 10px 0;
    }

    .mobile-menu-wrapper .main-nav a {
        color: #333 !important;
        /* Force dark text for white mobile menu on all pages */
    }

    .header-social {
        margin: 20px auto 0;
        justify-content: center;
    }

    /* Stack Navs: Borders */
    .nav-left {
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .mobile-toggle {
        display: block;
        width: 35px;
        height: 25px;
        position: relative;
        cursor: pointer;
        order: 4;
        z-index: 3001;
        pointer-events: auto;
    }

    .mobile-toggle span {
        position: absolute;
        width: 100%;
        height: 2px;
        background: #fff;
        /* White at the top (over dark slider) */
        transition: 0.3s;
    }

    .main-header.scrolled .mobile-toggle span {
        background: #000;
        /* Black when header is white (on scroll) */
    }

    /* When active (open), turn lines into X and make black */
    .mobile-toggle.active span {
        background: #000 !important;
    }

    .mobile-toggle.active span:nth-child(1) {
        top: 9px;
        transform: rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        top: 9px;
        transform: rotate(-45deg);
    }

    .mobile-toggle span:nth-child(1) {
        top: 0;
    }

    .mobile-toggle span:nth-child(2) {
        top: 9px;
    }

    .mobile-toggle span:nth-child(3) {
        top: 18px;
    }

    .slide-content h1 {
        font-size: 42px;
    }

    .slide-content h5 {
        font-size: 24px;
    }

    /* About Section Mobile */
    .about-flex {
        flex-direction: column !important;
        text-align: center;
    }

    .about-image {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .about-image img {
        margin: 0 auto;
        max-width: 90%;
    }
}

/* --- INNOVATIVE ANIMATIONS --- */

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.reveal.active,
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Keyframes */
@keyframes fadeInUpSoft {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Button Pulse */
.btn-primary.pulse {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 120, 75, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(242, 120, 75, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(242, 120, 75, 0);
    }
}

/* Floating Particles */
#particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.floating-particle {
    position: absolute;
    font-size: 24px;
    opacity: 0.6;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(110vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

/* Magnetic Button */
.btn-magnetic {
    transition: transform 0.1s ease, box-shadow 0.3s ease;
    display: inline-block;
}

/* 3D Card Effect */
.product-card {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform-style: preserve-3d;
}

.product-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.news-card {
    background: #fff;
    transition: var(--transition), opacity 0.4s ease, transform 0.4s ease;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    padding: 25px;
    overflow: hidden;
    position: relative;
    opacity: 1;
    transform: translateY(0) scale(1);
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.news-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #888;
    font-size: 14px;
}

.news-header i {
    font-size: 16px;
}

.news-image {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
    min-height: 56px;
}

.news-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.read-more {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.read-more::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.news-card:hover .read-more {
    color: var(--primary-color);
}

.read-more i {
    font-size: 14px;
}

/* Career Section */
.career-form-section {
    padding: 80px 0;
    background-color: #fff;
}

.career-form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.career-form-header h2 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 600;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
}

.career-form input,
.career-form select,
.career-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition-fast);
}

.career-form input:focus,
.career-form select:focus,
.career-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 87, 183, 0.1);
}

.file-upload-wrapper {
    width: auto;
    margin-bottom: 0;
}

.file-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background-color: #f0f2f5;
    color: #555;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-fast);
}

.file-upload-btn:hover {
    background-color: #e4e7eb;
    border-color: #ccc;
}

.file-upload-wrapper input[type="file"] {
    display: none;
}

/* Certificate Section */
.certificates-section {
    padding: 80px 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cert-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-color);
}

.cert-icon {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.cert-card:hover .cert-icon {
    transform: scale(1.1);
}

.cert-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.cert-card p {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.cert-card .btn-text {
    font-weight: 600;
    font-size: 13px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 35px;
}

.submit-btn {
    background-color: #4a474d;
    color: #fff;
    padding: 13px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
    font-size: 16px;
}

@media (max-width: 576px) {
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .file-upload-btn,
    .submit-btn {
        justify-content: center;
    }
}

.submit-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.submit-btn i {
    font-size: 18px;
}

/* News Detail Styles */
.news-detail-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.news-article {
    flex: 2;
}

.news-sidebar {
    flex: 1;
    position: sticky;
    top: 120px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #888;
    margin-bottom: 20px;
    font-size: 15px;
}

.article-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h3 {
    margin: 30px 0 15px;
    font-size: 24px;
}

/* Sidebar Styles */
.sidebar-title {
    font-size: 22px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.sidebar-news-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-item {
    display: flex;
    gap: 15px;
    align-items: center;
    transition: var(--transition-fast);
}

.sidebar-item:hover {
    transform: translateX(5px);
}

.sidebar-item-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-item-info h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
    color: #333;
}

.sidebar-item-date {
    font-size: 12px;
    color: #999;
}

@media (max-width: 992px) {
    .news-detail-wrapper {
        flex-direction: column;
    }

    .news-sidebar {
        width: 100%;
        position: static;
        margin-top: 50px;
    }
}

/* Homepage Specific Product Styling - Balanced Height Adjustment */
.home-product-grid .product-image {
    aspect-ratio: 14 / 11 !important;
    margin-bottom: 15px !important;
}

.home-product-grid .product-image img {
    height: 100% !important;
    object-fit: cover !important;
}

.home-product-grid .product-info {
    padding: 0 15px 20px !important;
}

.home-product-grid .product-info h3 {
    font-size: 20px !important;
    margin-bottom: 4px !important;
}

.home-product-grid .product-info p {
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.home-product-grid .price {
    margin-top: 8px !important;
    font-size: 15px !important;
}

/* Contact Form & Info Styles */
.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    box-shadow: var(--shadow-soft);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    margin: 0 auto;
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--text-color);
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    background: var(--light-gray);
    font-family: var(--font-body);
    transition: var(--transition);
    border-radius: 10px;
    font-size: 16px;
}

.form-control:focus {
    background: #fff;
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 87, 183, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.text-center {
    text-align: center;
}

/* Reverse Gray wave variant */
.wave-divider.wave-gray-reverse {
    background-color: var(--light-gray);
}

.wave-divider.wave-gray-reverse svg path {
    fill: var(--bg-color);
}