:root {
    --primary: #0CBFDF;
    --dark-navy: #014BAC;
    --dark-bg: #001a3d;
    --nav-bg: #0f2d55;
    --footer-bg: #0f2d55;
    --text-white: #ffffff;
    --hero-overlay: rgba(0, 0, 0, 0.85);
    --search-bg: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --top-bar-bg: #001a3d;
    --top-bar-text: #b0d4ff;
}

body.light-mode {
    --dark-bg: #f8fafc;
    --nav-bg: #ffffff;
    --footer-bg: #f1f5f9;
    --text-white: #014BAC;
    --hero-overlay: rgba(0, 0, 0, 0.7);
    --search-bg: rgba(255, 255, 255, 0.4);
    --top-bar-bg: #014BAC;
    --top-bar-text: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}



/* Main Header */
header {
    background-color: var(--nav-bg);
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 1001;
    padding: 0 5%;
    transition: background-color 0.4s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(12, 191, 223, 0.1);
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.logo-text .brand {
    font-weight: 800;
    font-size: 20px;
    color: var(--text-white);
    display: block;
    line-height: 1;
    letter-spacing: 1px;
}

.logo-text .sub {
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    opacity: 0.8;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    opacity: 1;
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.theme-toggle {
    cursor: pointer;
    font-size: 22px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.theme-toggle:hover {
    color: var(--primary);
    transform: rotate(30deg);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: var(--text-white);
    z-index: 1001;
}

/* Language Selector */
.lang-wrapper {
    position: relative;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-white);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.lang-dropdown {
    position: absolute;
    top: 45px;
    right: 0;
    background: var(--nav-bg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: none;
    flex-direction: column;
    min-width: 130px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    animation: slideDown 0.3s ease;
    z-index: 1002;
}

.lang-dropdown.show {
    display: flex;
}

.lang-option {
    padding: 12px 15px;
    cursor: pointer;
    transition: 0.3s;
    color: rgb(60, 172, 233);
}

.lang-option:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 5%;
    margin-top: 40px;
}

.hero-ring {
    width: 100px;
    height: 100px;
    border: 3px dashed var(--primary);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ringRotate 15s linear infinite, fadeInUp 0.8s forwards;
    opacity: 0;
    position: relative;
}

.hero-ring::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(12, 191, 223, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-ring-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    animation: innerPulse 2s ease-in-out infinite alternate;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: imageZoom 20s infinite alternate ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
    z-index: -1;
    transition: background 0.5s ease;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
}

.hero-motto {
    display: block;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.2s;
    font-size: 1.4rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.4s;
    color: white;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.6s;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.search-container {
    background: var(--search-bg);
    backdrop-filter: blur(10px);
    padding: 6px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    transition: all 0.3s ease;
}

.search-container:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.search-container input {
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 20px;
    color: white;
    flex: 1;
    font-size: 16px;
}

.search-container button {
    background: var(--primary);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.search-container button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(12, 191, 223, 0.4);
}

/* Why Shaft Section */
.why-shaft {
    padding: 100px 5%;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(1, 75, 172, 0.1) 0%, rgba(12, 191, 223, 0.1) 100%);
    overflow: hidden;
}

.why-shaft::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(12, 191, 223, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    position: relative;
    z-index: 1;
}

.why-card {
    padding: 40px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(12, 191, 223, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.why-card.animate {
    animation: slideUpFade 0.6s ease forwards;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(12, 191, 223, 0.2);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: 0.5s;
}

.why-card:hover::before {
    left: 100%;
}

.why-card i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.why-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Services Section */
.services-section {
    padding: 100px 5%;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-white);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 30px;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.service-box.animate {
    animation: slideUpFade 0.6s ease forwards;
}

body.light-mode .service-box {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.service-box:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    background: rgba(12, 191, 223, 0.05);
    box-shadow: 0 20px 40px rgba(12, 191, 223, 0.15);
}

.service-box .icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 42px;
    transition: 0.6s;
    position: relative;
    z-index: 1;
}

.service-box:hover .icon-circle {
    transform: rotateY(360deg) scale(1.1);
}

.icon-machinery { background: linear-gradient(135deg, rgba(255, 104, 155, 0.15) 0%, rgba(255, 104, 155, 0.3) 100%); color: #ff689b; }
.icon-telecom { background: linear-gradient(135deg, rgba(233, 191, 6, 0.15) 0%, rgba(233, 191, 6, 0.3) 100%); color: #e9bf06; }
.icon-tires { background: linear-gradient(135deg, rgba(63, 205, 199, 0.15) 0%, rgba(63, 205, 199, 0.3) 100%); color: #3fcdc7; }
.icon-power { background: linear-gradient(135deg, rgba(65, 207, 46, 0.15) 0%, rgba(65, 207, 46, 0.3) 100%); color: #41cf2e; }
.icon-parts { background: linear-gradient(135deg, rgba(214, 255, 34, 0.15) 0%, rgba(214, 255, 34, 0.3) 100%); color: #d6ff22; }
.icon-support { background: linear-gradient(135deg, rgba(70, 128, 255, 0.15) 0%, rgba(70, 128, 255, 0.3) 100%); color: #4680ff; }

.service-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--text-white);
    padding: 80px 5% 30px;
    transition: background-color 0.4s ease;
    border-top: 1px solid rgba(12, 191, 223, 0.2);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), #0190ad, var(--primary));
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--primary);
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(-20px);
}

.footer-links li.animate {
    animation: slideRightFade 0.5s ease forwards;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a::before {
    content: '›';
    color: var(--primary);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-links a:hover::before {
    transform: translateX(5px);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(12, 191, 223, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(12, 191, 223, 0.3);
}

.social-icons a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(12, 191, 223, 0.3);
}

.footer-bottom {
    text-align: center;
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
    opacity: 0.6;
    position: relative;
    z-index: 1;
}

/* Blog Section */
.blog-section {
    padding: 80px 5%;
    background: rgba(0,0,0,0.1);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: var(--nav-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.blog-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.blog-content {
    padding: 15px;
}

.blog-content h5 {
    font-size: 15px;
    margin-bottom: 8px;
}

.blog-content p {
    font-size: 12px;
    opacity: 0.7;
}

/* Particles Background */
.particles-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(12, 191, 223, 0.1);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.stagger-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes innerPulse {
    from { transform: scale(0.9); }
    to { transform: scale(1.05); }
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes imageZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUpFade {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideRightFade {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, 10px) rotate(90deg); }
    50% { transform: translate(0, 20px) rotate(180deg); }
    75% { transform: translate(-10px, 10px) rotate(270deg); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* --- LATEST PRODUCTS SECTION --- */
.products-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, rgba(1, 75, 172, 0.05) 0%, rgba(12, 191, 223, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.latest-products-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* --- BLOG SECTION (4 COLUMNS) --- */
.blog-section {
    padding: 100px 5%;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.latest-blogs-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 1200px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blogs-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(12, 191, 223, 0.2);
}

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.blog-content h5 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-white);
    line-height: 1.4;
}

.blog-content p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 10px;
    color: #0190ad;
}

/* --- LOCATIONS SECTION --- */
.locations-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, rgba(1, 75, 172, 0.05) 0%, rgba(12, 191, 223, 0.05) 100%);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

.location-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.location-img {
    width: 80px;
    height: 80px;
    background: rgba(12, 191, 223, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.location-img i {
    font-size: 36px;
    color: var(--primary);
}

.location-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.location-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 20px;
}

.location-contact {
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.location-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.location-contact i {
    color: var(--primary);
}

/* --- ENHANCED CONTACT FORM --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    display: grid;
    gap: 20px;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.info-box i {
    font-size: 24px;
    color: var(--primary);
    margin-top: 5px;
}

.info-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-white);
}

.info-box p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-form {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    box-shadow: 0 0 0 2px rgba(12, 191, 223, 0.2);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230CBFDF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    opacity: 0.8;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary) 0%, #0190ad 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(12, 191, 223, 0.4);
}

.contact-map {
    grid-column: 1 / -1;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- VIEW ALL BUTTON --- */
.view-all {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.view-all-btn:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(12, 191, 223, 0.3);
}

/* --- ANIMATIONS --- */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: slideInUp 0.6s ease forwards;
}



 /* Fix Products Display and Background */
        .products-section {
            padding: 100px 5%;
            position: relative;
            background: linear-gradient(135deg, rgba(1, 75, 172, 0.1) 0%, rgba(12, 191, 223, 0.1) 100%);
            overflow: hidden;
        }
        
        .products-section::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background: radial-gradient(circle, rgba(12, 191, 223, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
            z-index: 0;
        }
        
        .products-section .section-title,
        .products-section .products-grid,
        .products-section .view-all {
            position: relative;
            z-index: 1;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin: 40px auto;
            max-width: 1400px;
            position: relative;
            z-index: 1;
        }
        
        .product-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            backdrop-filter: blur(10px);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(12, 191, 223, 0.2);
        }
        
        .product-img {
            width: 100%;
            height: 180px;
            object-fit: contain;
            border-radius: 10px;
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.1);
            padding: 10px;
        }
        
        .product-tag {
            font-size: 12px;
            color: var(--primary);
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 1.5px;
            display: inline-block;
            padding: 5px 15px;
            background: rgba(12, 191, 223, 0.1);
            border-radius: 20px;
            margin-bottom: 15px;
        }
        
        .product-card h4 {
            font-size: 18px;
            margin-bottom: 15px;
            color: var(--text-white);
        }
        
        .product-specs {
            list-style: none;
            padding: 0;
            margin: 15px 0;
            text-align: left;
            flex-grow: 1;
        }
        
        .product-specs li {
            font-size: 14px;
            margin-bottom: 8px;
            opacity: 0.8;
        }
        
        .product-specs b {
            color: var(--primary);
        }
        
        .view-details-btn {
            display: inline-block;
            padding: 10px 25px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: auto;
            text-align: center;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }
        
        .view-details-btn:hover {
            background: #0190ad;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(12, 191, 223, 0.3);
        }
        
        /* Blog Section */
        .blog-section {
            padding: 100px 5%;
            background: var(--dark-bg);
        }
        
        .blogs-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin: 40px auto;
            max-width: 1400px;
        }
        
        .blog-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(12, 191, 223, 0.2);
        }
        
        .blog-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .blog-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .blog-date {
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
        }
        
        .blog-content h5 {
            font-size: 18px;
            margin-bottom: 15px;
            color: var(--text-white);
            line-height: 1.4;
        }
        
        .blog-content p {
            font-size: 14px;
            line-height: 1.6;
            opacity: 0.8;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .read-more {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }
        
        .read-more:hover {
            gap: 10px;
            color: #0190ad;
        }
        
        /* Partners Slider Section */
        .partners-section {
            padding: 100px 5%;
            background: var(--dark-bg);
            position: relative;
            overflow: hidden;
        }
        
        .partners-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
        }
        
        .partners-slider-container {
            position: relative;
            max-width: 1400px;
            margin: 60px auto 0;
            padding: 0 50px;
        }
        
        .partners-slider {
            overflow: hidden;
            position: relative;
        }
        
        .partners-track {
            display: flex;
            animation: scroll 20s linear infinite;
            gap: 40px;
        }
        
        .partner-slide {
            flex: 0 0 auto;
            width: 200px;
            height: 120px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .partner-slide:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 20px rgba(12, 191, 223, 0.2);
        }
        
        .partner-slide img {
            max-width: 100%;
            max-height: 70px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .partner-slide:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(12, 191, 223, 0.2);
            border: none;
            color: var(--primary);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .slider-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-50%) scale(1.1);
        }
        
        .prev-btn {
            left: 0;
        }
        
        .next-btn {
            right: 0;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-200px * 5 - 40px * 5));
            }
        }
        
   
        /* View All Button */
        .view-all {
            text-align: center;
            margin-top: 60px;
            position: relative;
            z-index: 1;
        }
        
        .view-all-btn {
            display: inline-block;
            padding: 15px 40px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
        }
        
        .view-all-btn:hover {
            background: transparent;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(12, 191, 223, 0.3);
        }
        
        /* Animations */
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .products-grid,
            .blogs-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .contact-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .contact-map {
                height: 400px;
            }
            
            .partners-track {
                gap: 30px;
            }
            
            .partner-slide {
                width: 180px;
            }
        }
        
        @media (max-width: 900px) {
            .products-grid,
            .blogs-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .partners-slider-container {
                padding: 0 40px;
            }
            
            .partner-slide {
                width: 160px;
                height: 100px;
                padding: 20px;
            }
        }
        
        @media (max-width: 600px) {
            .products-grid,
            .blogs-grid {
                grid-template-columns: 1fr;
            }
            
            .partners-slider-container {
                padding: 0 30px;
            }
            
            .partner-slide {
                width: 140px;
                height: 90px;
                padding: 15px;
            }
            
            .slider-btn {
                width: 35px;
                height: 35px;
                font-size: 20px;
            }
        }




