/* Color Variables */
:root {
    --dark-blue: #010326;
    --navy-blue: #010B40;
    --primary-blue: #04B2D9;
    --light-blue: #05DBF2;
    --light-gray: #F2F2F2;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-blue);
    background-color: var(--light-gray);
}

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

/* Header and Navigation */
header {
    background-color: var(--dark-blue);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(1, 3, 38, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    transition: padding 0.3s ease;
}

header.scrolled .navbar {
    padding: 0.5rem 2rem;
}

.logo h1 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    transition: font-size 0.3s ease;
}

header.scrolled .logo h1 {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    color: var(--light-gray);
    text-decoration: none;
    margin-left: 2rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--light-gray);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section with Slider */
.hero {
    width: 100vw;
    height: 100vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider {
    width: 100vw;
    height: 100vh;
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    width: 100vw;
    height: 100vh;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.slide-content {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: unset;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    background: rgba(20, 30, 50, 0.48);
    padding: 1.3em 2.2em 1.3em 2.2em;
    border-radius: 1.5em;
    box-shadow: 0 8px 32px rgba(4,178,217,0.13), 0 2px 8px rgba(1,3,38,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7em;
    min-width: 0;
    max-width: 90vw;
    opacity: 1;
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.18);
    animation: slideContentFadeUp 1.1s cubic-bezier(.22,1.2,.36,1) 0.1s forwards;
}
@keyframes slideContentFadeUp {
    from { opacity: 0; transform: translateX(-50%) translateY(40px) scale(0.98); }
    to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}
.slide-small {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    margin-bottom: 0.2em;
    line-height: 1.4;
    color: #fff;
    text-shadow: 0 4px 16px rgba(0,0,0,0.32), 0 1.5px 4px rgba(0,0,0,0.18);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    text-fill-color: initial;
    filter: none;
    animation: slideSmallPop 1.2s cubic-bezier(.22,1.2,.36,1) 0.2s both;
}
@keyframes slideSmallPop {
    0% { opacity: 0; transform: scale(0.95) translateY(30px); }
    60% { opacity: 1; transform: scale(1.04) translateY(-6px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
}
.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 0;
}
.slider-btn {
    margin-top: 0.2em;
    align-self: center;
    box-shadow: 0 0 16px 0 rgba(4,178,217,0.18), 0 2px 8px rgba(4,178,217,0.10);
    animation: sliderBtnGlow 1.2s cubic-bezier(.22,1.2,.36,1) 0.4s both;
    border: 2.5px solid var(--primary-blue);
    border-radius: 30px;
    background: #fff;
    color: var(--primary-blue);
    font-weight: 700;
    background-clip: padding-box;
    transition: border 0.2s, background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    font-size: 1.1rem;
    padding: 0.9em 2.2em;
    display: inline-block;
}
@keyframes sliderBtnGlow {
    0% { opacity: 0; filter: blur(4px) brightness(1.2); transform: scale(0.9); }
    60% { opacity: 1; filter: blur(0) brightness(1.1); transform: scale(1.06); }
    100% { opacity: 1; filter: blur(0) brightness(1); transform: scale(1); }
}
.slider-btn:hover {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 0 24px 0 rgba(4,178,217,0.22), 0 2px 8px rgba(4,178,217,0.13);
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
    .slide-content {
        max-width: 98vw;
        padding: 0.8em 1.2em 0.8em 1.2em;
    }
    .slide-small { font-size: 1.08rem; }
}
@media (max-width: 600px) {
    .slide-content {
        max-width: 99vw;
        padding: 0.6em 0.7em 0.6em 0.7em;
    }
    .slide-small { font-size: 0.95rem; }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%2304B2D9" opacity="0.1"/></svg>');
    opacity: 0.1;
}

.profile-part {
    margin-bottom: 4rem;
}

.profile-part:last-child {
    margin-bottom: 0;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.profile-content:hover {
    transform: translateY(-5px);
}

.profile-content.reverse {
    direction: rtl;
}

.profile-content.reverse .profile-text {
    direction: ltr;
}

.profile-text {
    padding: 2rem;
}

.profile-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--navy-blue);
    font-size: 1.1rem;
}

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

.profile-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-image:hover img {
    transform: scale(1.05);
}

.profile-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(4, 178, 217, 0.2), rgba(1, 3, 38, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-image:hover::after {
    opacity: 1;
}

.section-title {
    text-align: center;
    width: 100%;
    margin: 0 auto 2rem auto;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.about-content {
    position: relative;
    z-index: 1;
}

.profile-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy-blue) 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1" fill="%2304B2D9" opacity="0.1"/></svg>');
    opacity: 0.1;
}

.profile-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.profile-header h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.tagline {
    font-size: 1.2rem;
    color: var(--light-blue);
    opacity: 0.9;
}

.profile-body {
    padding: 2rem;
}

.profile-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    border-radius: 15px;
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.section-content {
    flex-grow: 1;
}

.section-content h4 {
    color: var(--navy-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-blue);
}

.section-content p {
    color: var(--dark-blue);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-3px);
    background: var(--primary-blue);
    color: white;
}

.expertise-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.expertise-item:hover i {
    color: white;
}

.expertise-item span {
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-blue) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1" fill="%2304B2D9" opacity="0.1"/></svg>');
    opacity: 0.1;
}

.why-choose-us .section-title {
    color: white;
}

.why-choose-us .section-title::after {
    background: var(--primary-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-blue);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0 6rem 0;
    background: linear-gradient(120deg, #e0f7fa 0%, #ffffff 100%);
    position: relative;
    border-left: 8px solid var(--primary-blue);
    box-shadow: 0 8px 32px rgba(4, 178, 217, 0.08);
    overflow: hidden;
}

.contact .section-title {
    font-size: 2.7rem;
    color: var(--navy-blue);
    font-weight: 800;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    display: block;
    text-align: center;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    gap: 0.7em;
}

.contact .section-title::before {
    content: '\f0e0'; /* fa-envelope icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-right: 0.5em;
    display: inline-block;
    vertical-align: middle;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
    background: rgba(255,255,255,0.95);
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(4, 178, 217, 0.10);
    border: 1.5px solid #e0f7fa;
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 1rem 2rem 2rem;
}

.info-card {
    background: linear-gradient(100deg, #f2fcff 60%, #e0f7fa 100%);
    padding: 1.5rem 2rem;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(4, 178, 217, 0.07);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: box-shadow 0.3s, transform 0.3s;
    border-left: 5px solid var(--primary-blue);
}

.info-card:hover {
    box-shadow: 0 6px 24px rgba(4, 178, 217, 0.18);
    transform: translateY(-4px) scale(1.03);
}

.info-icon {
    width: 54px;
    height: 54px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 2px 8px rgba(4, 178, 217, 0.12);
    flex-shrink: 0;
}

.info-content h3 {
    color: var(--navy-blue);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.info-content p {
    color: #333;
    font-size: 1rem;
    margin: 0.1rem 0;
}

.contact-form-container {
    flex: 2 1 400px;
    background: linear-gradient(120deg, #fafdff 60%, #e0f7fa 100%);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(4, 178, 217, 0.10);
    transition: box-shadow 0.3s, transform 0.3s;
    margin: 2rem 0;
}

.contact-form-container:hover {
    box-shadow: 0 8px 32px rgba(4, 178, 217, 0.18);
    transform: translateY(-3px) scale(1.01);
}

.contact-form {
    display: grid;
    gap: 1.7rem;
}

.form-group input,
.form-group textarea {
    background: #f2fcff;
    border-radius: 8px;
    border: 1.5px solid #e0f7fa;
    padding: 1rem 1.2rem;
    font-size: 1.05rem;
    color: var(--navy-blue);
    transition: border 0.3s, box-shadow 0.3s;
    box-shadow: 0 1px 4px rgba(4, 178, 217, 0.04);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 2px 8px rgba(4, 178, 217, 0.10);
}

.form-group label {
    left: 1.2rem;
    color: #888;
    font-size: 1rem;
    top: 1.1rem;
    background: transparent;
    padding: 0 0.2em;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:valid ~ label {
    top: -0.7rem;
    left: 1rem;
    font-size: 0.85rem;
    color: var(--primary-blue);
    background: #fafdff;
    padding: 0 0.3em;
}

.submit-btn {
    background: linear-gradient(90deg, var(--primary-blue) 60%, var(--light-blue) 100%);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    margin-top: 1rem;
    box-shadow: 0 2px 8px rgba(4, 178, 217, 0.10);
}

.submit-btn:hover {
    background: var(--navy-blue);
    transform: translateY(-2px) scale(1.03);
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0.5rem;
    }
    .contact-info, .contact-form-container {
        padding: 2rem 1rem;
    }
}

@media (max-width: 600px) {
    .contact .section-title {
        font-size: 2rem;
    }
    .contact-container {
        border-radius: 16px;
        padding: 0.2rem;
    }
    .contact-info, .contact-form-container {
        padding: 1.2rem 0.5rem;
    }
    .info-card {
        flex-direction: column;
        gap: 0.7rem;
        padding: 1rem 1rem;
    }
    .contact-form-container {
        padding: 1.2rem 0.5rem;
    }
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--light-gray);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

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

.social-links a {
    color: var(--light-gray);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-blue);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 992px) {
    .profile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-content.reverse {
        direction: ltr;
    }

    .profile-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--dark-blue);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        padding: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 1rem 0;
        font-size: 1.2rem;
    }

    header.scrolled .nav-links {
        background-color: rgba(1, 3, 38, 0.98);
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .components-list {
        grid-template-columns: 1fr;
    }

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

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

    .profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .section-icon {
        margin-bottom: 1rem;
    }

    .section-content h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .profile-header {
        padding: 2rem 1rem;
    }

    .profile-header h3 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 1rem;
    }

    .profile-text {
        padding: 1.5rem;
    }

    .profile-text p {
        font-size: 1rem;
    }

    .profile-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .slide-content h2 {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 1.5rem;
    }
}

/* Machinery Gallery Section */
.machinery-gallery {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.machinery-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%2304B2D9" opacity="0.1"/></svg>');
    opacity: 0.1;
}

.gallery-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s ease;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16/9;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(1, 3, 38, 0.9), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-slide:hover .slide-caption {
    transform: translateY(0);
}

.slide-caption h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.slide-caption p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.gallery-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-blue);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-slider-btn:hover {
    background: var(--navy-blue);
    transform: translateY(-50%) scale(1.1);
}

.gallery-slider-btn.prev {
    left: 20px;
}

.gallery-slider-btn.next {
    right: 20px;
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .gallery-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slide-caption {
        transform: translateY(0);
        padding: 1rem;
    }

    .slide-caption h3 {
        font-size: 1.5rem;
    }

    .slide-caption p {
        font-size: 1rem;
    }
}

/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
    overflow: hidden;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropdown-btn {
    background-color: #f5f5f5;
}

/* Creative Continuous Our Machinery Slider */
.our-machinery.creative-slider {
    padding: 5rem 0 4rem 0;
    background: linear-gradient(120deg, #e0f7fa 0%, #fafdff 100%);
    position: relative;
    overflow: hidden;
}
.machinery-continuous-slider {
    display: flex;
    align-items: stretch;
    gap: 2.5rem;
    animation: machinery-scroll 18s linear infinite;
    will-change: transform;
}
@keyframes machinery-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.machinery-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 320px;
    max-width: 340px;
    background: rgba(255,255,255,0.95);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(4, 178, 217, 0.13), 0 2px 8px rgba(1,3,38,0.07);
    overflow: hidden;
    text-decoration: none;
    color: var(--navy-blue);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 1;
}
.machinery-card:hover {
    transform: translateY(-10px) scale(1.04) rotate(-1deg);
    box-shadow: 0 16px 48px rgba(4, 178, 217, 0.18), 0 4px 16px rgba(1,3,38,0.10);
}
.machinery-img-wrap {
    width: 100%;
    height: 210px;
    background: linear-gradient(120deg, #04B2D9 30%, #05DBF2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 4px solid var(--primary-blue);
}
.machinery-card img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(4, 178, 217, 0.10);
    transition: transform 0.3s;
}
.machinery-card:hover img {
    transform: scale(1.07) rotate(2deg);
}
.machinery-card-content {
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
    background: none;
}
.machinery-card-content h3 {
    font-size: 1.35rem;
    color: var(--primary-blue);
    margin-bottom: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.machinery-card-content p {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 0;
}
.our-machinery .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy-blue);
    font-weight: 800;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}
.our-machinery .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    margin: 1.2rem auto 0 auto;
    border-radius: 2px;
    opacity: 0.7;
}
@media (max-width: 1100px) {
    .machinery-continuous-slider {
        gap: 1.2rem;
    }
    .machinery-card {
        min-width: 260px;
        max-width: 270px;
    }
    .machinery-img-wrap {
        height: 150px;
    }
}
@media (max-width: 700px) {
    .our-machinery.creative-slider {
        padding: 2.5rem 0 2rem 0;
    }
    .machinery-card {
        min-width: 180px;
        max-width: 200px;
    }
    .machinery-img-wrap {
        height: 90px;
    }
    .machinery-card-content {
        padding: 1rem 0.5rem 0.7rem 0.5rem;
    }
    .our-machinery .section-title {
        font-size: 1.3rem;
    }
}

/* Our Products Page Styles */
.products-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px 30px 20px;
}
.products-title {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-top: 1.5rem;
    position: relative;
}
.products-title h1 {
    font-size: 2.7rem;
    color: var(--primary-blue);
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(4,178,217,0.08);
}
.products-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    margin: 18px auto 0 auto;
    border-radius: 2px;
    opacity: 0.7;
}
.products-title p {
    color: #444;
    font-size: 1.18rem;
    font-weight: 400;
    margin-top: 0.7rem;
    margin-bottom: 0.2rem;
    line-height: 1.6;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.1px;
}
@media (max-width: 600px) {
    .products-title h1 {
        font-size: 2rem;
    }
    .products-title::after {
        width: 40px;
        height: 3px;
    }
    .products-title p {
        font-size: 1.02rem;
    }
}
.products-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}
.product-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(4,178,217,0.07);
    padding: 2rem 1.5rem;
    flex: 1 1 300px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s;
}
.product-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(4,178,217,0.13);
}
.product-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}
.product-card h2 {
    font-size: 1.3rem;
    color: var(--navy-blue);
    margin-bottom: 0.7rem;
}
.product-card p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}
.product-card a {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-blue) 60%, var(--light-blue) 100%);
    color: #fff;
    padding: 0.7rem 2.2rem;
    border-radius: 22px;
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}
.product-card a:hover {
    background: var(--navy-blue);
    transform: scale(1.06);
}
@media (max-width: 900px) {
    .products-list {
        flex-direction: column;
        align-items: center;
    }
    .product-card {
        max-width: 100%;
        width: 100%;
    }
}

/* Contact Section Styles for Products Page */
.engine-contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: linear-gradient(120deg, #e0f7fa 0%, #fafdff 100%);
    padding: 0;
    margin: 0 auto 2.5rem auto;
}
.contact-details {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(4,178,217,0.13), 0 2px 8px rgba(1,3,38,0.07);
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    width: 100%;
    position: relative;
}
.contact-illustration {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-blue) 60%, var(--light-blue) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(4,178,217,0.13);
}
.contact-details h2 {
    color: var(--primary-blue);
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-align: center;
}
.contact-details p {
    color: #333;
    font-size: 1.13rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.contact-info-row {
    display: flex;
    gap: 2.2rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.7rem;
    flex-wrap: wrap;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.7em;
    background: #e0f7fa;
    padding: 0.7em 1.2em;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(4,178,217,0.07);
    font-size: 1.08rem;
    color: var(--navy-blue);
}
.contact-info-item i {
    color: var(--primary-blue);
    font-size: 1.2em;
}
.get-quote-btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-blue) 60%, var(--light-blue) 100%);
    color: #fff;
    padding: 1.1rem 2.7rem;
    border-radius: 30px;
    font-size: 1.18rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 2px 8px rgba(4,178,217,0.10);
    margin-top: 1.2rem;
    letter-spacing: 0.5px;
}
.get-quote-btn:hover {
    background: var(--navy-blue);
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 700px) {
    .contact-details {
        padding: 2rem 0.7rem 1.5rem 0.7rem;
    }
    .contact-info-row {
        flex-direction: column;
        gap: 1rem;
    }
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-nav-btn.prev { left: 30px; }
.slider-nav-btn.next { right: 30px; }
.slider-nav-btn:hover { background: rgba(0,0,0,0.8); }

.warehouse-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}
.warehouse-img-wrap {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(4,178,217,0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    min-width: 0;
}
.warehouse-img-wrap img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.4s, filter 0.3s;
}
@media (max-width: 900px) {
    .warehouse-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .warehouse-img-wrap {
        height: 100px;
    }
}
@media (max-width: 600px) {
    .warehouse-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
    .warehouse-img-wrap {
        height: 80px;
    }
} 