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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

/* .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
} */

/* 🔥 BUTTON */
.btn-primary {
    background: linear-gradient(135deg, #6c63ff, #4facfe);
    border: none;
    padding: 12px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

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

.nav-brand .logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
}

.nav-brand .logo .logo-img {
    width: 250px;
    height: 70px;
    margin-right: 12px;
    object-fit: cover;
    background: transparent;
    position: relative;
    overflow: hidden;

    /* transition: transform 0.5s ease;
    transform-style: preserve-3d; */
}

.nav-brand .logo .logo-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 50%, rgba(102, 126, 234, 0.3) 100%);
    transition: left 0.6s ease;
    z-index: 1;
}

.nav-brand .logo .logo-img:hover::before {
    left: 100%;
}

/* .nav-brand .logo:hover .logo-img {
    transform: rotateY(30deg) rotateX(30deg) scale(1.05);
} */

.nav-brand .logo .logo-img::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-brand .logo .logo-img:hover::after {
    opacity: 1;
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
    }
    50% {
        box-shadow: 0 0 30px rgba(118, 75, 162, 0.8);
    }
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #667eea;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #667eea;
}

.dropdown-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.dropdown-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
   background: #f8f9fa;

}

.hero-carousel  {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

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

.carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    animation: zoomIn 15s ease-in-out infinite;
    object-position: center center;
    display: block;
}


@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    animation: fadeInUp 1.5s ease-out;
}

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

.hero-logo {
    margin-bottom: 30px;
}

.main-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #667eea;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
    margin: 0 auto;
}
.main-logo .hero-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    animation: logoPulse 2s ease-in-out infinite;
}
 

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(102, 126, 234, 0.6);
    }
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 15px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: white;
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Us Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    33% {
        transform: translateX(30px) translateY(-30px);
    }
    66% {
        transform: translateX(-20px) translateY(20px);
    }
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 60px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.about-intro p {
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.about-intro p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3rem;
    color: #667eea;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.company-profile, .who-we-are, .our-mission, .orlen-difference, .product-range, .why-choose-us {
    background: white;
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.company-profile::before, .who-we-are::before, .our-mission::before, .orlen-difference::before, .product-range::before, .why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    transition: width 0.4s ease;
}

.company-profile:hover::before, .who-we-are:hover::before, .our-mission:hover::before, .orlen-difference:hover::before, .product-range:hover::before, .why-choose-us:hover::before {
    width: 8px;
}

.company-profile:hover, .who-we-are:hover, .our-mission:hover, .orlen-difference:hover, .product-range:hover, .why-choose-us:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.company-profile h3, .who-we-are h3, .our-mission h3, .orlen-difference h3, .product-range h3, .why-choose-us h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
    position: relative;
    padding-left: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: underline;
    text-decoration-color: #667eea;
    text-decoration-thickness: 3px;
    text-underline-offset: 10px;
}

.company-profile h3 i, .who-we-are h3 i, .our-mission h3 i, .orlen-difference h3 i, .product-range h3 i, .why-choose-us h3 i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #667eea;
    text-decoration: none;
}

.product-range {
    margin-top: 30px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 40px;
}

.company-profile p, .who-we-are p, .our-mission p, .why-choose-us p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.orlen-difference ul {
    list-style: none;
    padding: 0;
}

.orlen-difference li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    transition: transform 0.3s ease;
}

.orlen-difference li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.orlen-difference li:hover {
    transform: translateX(10px);
}

.product-table {
    margin-top: 30px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.product-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.product-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    color: #555;
    transition: background 0.3s ease;
}

.product-table tr:hover td {
    background: rgba(102, 126, 234, 0.05);
}

.product-table tr:last-child td {
    border-bottom: none;
}

/* Director's Message Section */
.director-message {
    padding: 80px 0;
    background: white;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #667eea;
}

.message-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.message-content ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.message-content li {
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    position: relative;
    padding-left: 30px;
}

.message-content li:before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 12px;
    color: #667eea;
    font-weight: bold;
    font-size: 18px;
}

.message-content strong {
    color: #333;
}

/* Director Contact Info */
.director-contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.director-contact h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    border: 2px solid transparent;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.contact-details .label {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.products {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-category {
    background: white;
    border-radius: 15px;
    padding: 0;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.category-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.category-header h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Enhanced Product Details Layout */
.product-details {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.product-details::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(102, 126, 234, 0.03) 50%, 
        transparent 70%);
    animation: shimmer 4s infinite;
    pointer-events: none;
}

/* Product Image Section */
.product-image-section {
    position: relative;
    z-index: 2;
}

.main-image-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* View More Photos Button */
.view-more-photos {
    text-align: center;
    margin-top: 20px;
}

.view-more-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Floating Contact Icons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.phone-float, .whatsapp-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-float {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-float {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.phone-float:hover, .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.phone-float::before, .whatsapp-float::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.phone-float:hover::before, .whatsapp-float:hover::before {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .phone-float, .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Form Messages */
.form-message {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Simple Mobile Fixes */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
        padding: 20px;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        padding: 15px;
    }
    
    .contact-icon {
        min-width: 40px;
        height: 40px;
        margin-right: 15px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 50%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }
    
    .contact-details {
        flex: 1;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .contact-details * {
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
    }
    
    .contact-details h4 {
        font-size: 16px !important;
        margin-bottom: 5px !important;
        color: #333 !important;
        font-weight: 600 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .contact-details p {
        font-size: 14px !important;
        line-height: 1.4 !important;
        color: #666 !important;
        margin: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Product Gallery Section */
.product-gallery-section {
    margin-bottom: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(102, 126, 234, 0.05);
    position: relative;
    overflow: hidden;
}

.product-gallery-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(102, 126, 234, 0.03) 50%, 
        transparent 70%);
    animation: shimmer 8s infinite;
    pointer-events: none;
}

.product-gallery-section:last-child {
    margin-bottom: 0;
}

/* Enhanced Gallery Header with 3D Effects */
.gallery-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.gallery-header h3 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(102, 126, 234, 0.2),
        0 16px 32px rgba(118, 75, 162, 0.1);
    transform: translateZ(20px) rotateX(5deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* animation: float3D 6s ease-in-out infinite; */
}

.gallery-header h3::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) translateZ(-10px);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
    box-shadow: 
        0 4px 12px rgba(102, 126, 234, 0.4),
        0 8px 24px rgba(118, 75, 162, 0.2);
    transform-origin: center;
    animation: pulse3D 3s ease-in-out infinite;
}

.gallery-header h3::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%) translateZ(-15px);
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #764ba2, #667eea);
    border-radius: 1px;
    opacity: 0.6;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    animation: pulse3D 3s ease-in-out infinite 0.5s;
}

.gallery-header:hover h3 {
    transform: translateZ(30px) rotateX(0deg) scale(1.05);
    text-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.2),
        0 12px 24px rgba(102, 126, 234, 0.3),
        0 24px 48px rgba(118, 75, 162, 0.15);
}

.gallery-header:hover h3::before {
    transform: translateX(-50%) translateZ(-5px) scale(1.1);
    box-shadow: 
        0 6px 16px rgba(102, 126, 234, 0.5),
        0 12px 32px rgba(118, 75, 162, 0.3);
}

.gallery-header:hover h3::after {
    transform: translateX(-50%) translateZ(-10px) scale(1.2);
    opacity: 0.8;
}

/* 3D Animation Keyframes */
@keyframes float3D {
    0%, 100% {
        transform: translateZ(20px) rotateX(5deg) translateY(0px);
    }
    50% {
        transform: translateZ(25px) rotateX(3deg) translateY(-5px);
    }
}

@keyframes pulse3D {
    0%, 100% {
        transform: translateX(-50%) translateZ(-10px) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-50%) translateZ(-15px) scale(1.1);
        opacity: 1;
    }
}

.gallery-header p {
    color: #6c757d;
    font-size: 1.2rem;
    margin-top: 35px;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.gallery-header p::before {
    content: '❝';
    position: absolute;
    top: -10px;
    left: -25px;
    font-size: 2rem;
    color: #667eea;
    opacity: 0.3;
}

.gallery-header p::after {
    content: '❞';
    position: absolute;
    bottom: -25px;
    right: -25px;
    font-size: 2rem;
    color: #764ba2;
    opacity: 0.3;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(102, 126, 234, 0.1) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 10px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Gallery Category Spacing */
.gallery-category {
    margin-bottom: 80px;
}

.gallery-category:last-child {
    margin-bottom: 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-gallery-section {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-header h3 {
        font-size: 1.5rem;
    }
    
    .gallery-item img {
        height: 200px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-header h3 {
        font-size: 1.3rem;
    }
    
    .gallery-item img {
        height: 180px;
        padding: 10px;
    }
}

/* Thumbnail Gallery */
.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail:hover {
    transform: scale(1.05);
    border-color: #667eea;
    opacity: 1;
}

.thumbnail.active {
    border-color: #667eea;
    opacity: 1;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

/* Product Info Section */
.product-info-section {
    position: relative;
    z-index: 2;
}

.product-info-section h4 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.product-info-section h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Simple Image Slider Styles */

.dot {
    cursor: pointer;
    touch-action: manipulation;
}
.image-slider {
    position: relative;
    width: 100%;
    height: auto;
}

.image-slider img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateX(0);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: #667eea;
    transform: scale(1.2);
}

.slider-dots .dot:hover {
    background: #a0a0a0;
}

.slider-dots .dot.active:hover {
    background: #667eea;
}

/* Mobile styles for dots */
@media (max-width: 768px) {
    .slider-dots .dot {
        width: 12px;
        height: 12px;
    }
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-carousel .carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.product-carousel .carousel-slide.active {
    display: block;
}

.product-carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

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

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

.product-carousel .indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Simple Carousel Styles */
.simple-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-images {
    display: flex;
    transition: transform 0.3s ease;
}

.carousel-slide {
    min-width: 100%;
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #667eea;
    border-color: #667eea;
    transform: scale(1.2);
}

.dot:hover {
    background: #b0b0b0;
}

.dot.active:hover {
    background: #667eea;
}

.product-carousel .indicator.active {
    background: #667eea;
    border-color: #667eea;
    transform: scale(1.3);
}

/* Carousel Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(102, 126, 234, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    font-size: 14px;
}

.carousel-arrow:hover {
    background: rgba(102, 126, 234, 1);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}

/* Corner Arrows */
.carousel-corner-arrow {
    position: absolute;
    top: 10px;
    background: rgba(102, 126, 234, 0.8);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    font-size: 12px;
}

.carousel-corner-arrow:hover {
    background: rgba(102, 126, 234, 1);
    transform: scale(1.1);
}

.top-left-arrow {
    left: 10px;
}

.top-right-arrow {
    right: 10px;
}

.bottom-left-arrow {
    bottom: 10px;
}

.bottom-right-arrow {
    right: 10px;
}

.product-info {
    padding: 40px;
}

.skus,
.overview,
.features {
    margin-bottom: 30px;
}

.skus h4,
.overview h4,
.features h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.skus h4:before,
.overview h4:before,
.features h4:before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-right: 10px;
    border-radius: 2px;
}

.sku-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.sku {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #495057;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.sku:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.overview {
    margin-bottom: 30px;
}

.overview p {
    line-height: 1.8;
    color: #495057;
    font-size: 1rem;
    text-align: justify;
    background: rgba(102, 126, 234, 0.02);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.features {
    margin-bottom: 30px;
}

.features ul {
    list-style: none;
    padding: 0;
    padding-right: 20px;
}

.features li {
    position: relative;
    padding: 12px 0 12px 35px;
    border-bottom: 1px solid #f1f3f5;
    transition: all 0.3s ease;
    text-align: justify;
    text-justify: inter-word;
}

.features li:last-child {
    border-bottom: none;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.features li:hover {
    background: rgba(102, 126, 234, 0.05);
    padding-left: 40px;
    border-radius: 8px;
}

/* CTA Section */
.cta-section {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.cta-section .btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.cta-section .btn-outline {
    border: 2px solid #667eea;
    color: #667eea;
    background: transparent;
}

.cta-section .btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-details {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }
    
    .main-image-container {
        height: 300px;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .thumbnail {
        height: 60px;
    }
    
    .sku-list {
        justify-content: center;
    }
    
    .cta-section {
        flex-direction: column;
    }
    
    .cta-section .btn {
        width: 100%;
        text-align: center;
    }
}

/* Inquiry Section */
.inquiry {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.inquiry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.inquiry .section-header h2,
.inquiry .section-header p {
    color: white;
    position: relative;
    z-index: 1;
}

.inquiry-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.inquiry-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
     
}
.inquiry .container{
    max-width: 100%;
    padding: 0 15px;
}

.inquiry-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(102, 126, 234, 0.1) 50%, 
        transparent 70%);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.inquiry-form {
    position: relative;
    z-index: 2;
}

.inquiry-form h3 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.inquiry-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.inquiry-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 
        0 0 0 3px rgba(102, 126, 234, 0.1),
        0 4px 20px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #555;
    position: relative;
    padding-left: 30px;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
    background: #e9ecef;
    border-color: #667eea;
}

.checkbox-label input:checked ~ .checkmark {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
}

.checkbox-label input:checked ~ .checkmark::after {
    content: '✓';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-large:hover::before {
    width: 300px;
    height: 300px;
}

.btn-large i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.btn-large:hover i {
    transform: translateX(3px);
}

.inquiry-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.inquiry-info .info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.inquiry-info .info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    animation: shimmer 4s infinite;
    pointer-events: none;
}

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

.inquiry-info .info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.inquiry-info .info-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.inquiry-info .info-card h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.inquiry-info .info-card p,
.inquiry-info .info-card a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.inquiry-info .info-card a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
 transition: 0.3s;}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.info-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 14px;
    opacity: 0.9;
    margin: 5px 0;
}

/* Products Preview Section */
.products-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.preview-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.preview-image {
    height: 200px;
    overflow: hidden;
}

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

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

.preview-content {
    padding: 20px;
}

.preview-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.preview-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.contact-details p {
    font-size: 1rem;
    color: #666;
    margin: 5px 0;
    line-height: 1.6;
}

.contact-details a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.contact-map {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container {
    position: relative;
    width: 100%;
    height: auto;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Footer Contact Info */
.footer .contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .contact-item a:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    animation: sparkle 4s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-item:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.stat-item:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 60px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: white;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #fff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: numberGlow 2s ease-in-out infinite alternate;
    position: relative;
    z-index: 3;
}

@keyframes numberGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
    to {
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
    }
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
}

/* 3D Effect Enhancement */
.stat-item:nth-child(1) {
    animation: float1 6s ease-in-out infinite;
}

.stat-item:nth-child(2) {
    animation: float2 8s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translateY(0) rotateX(0) rotateY(0);
    }
    50% {
        transform: translateY(-5px) rotateX(2deg) rotateY(2deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0) rotateX(0) rotateY(0);
    }
    50% {
        transform: translateY(-8px) rotateX(-2deg) rotateY(-2deg);
    }
}

/* CTA Section */
.cta-section {
    padding: 40px 0;
    text-align: center;
}

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

/* Why Choose/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.3);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #667eea;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #555;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.map-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
    border-radius: 0;
}

/* Responsive Map */
@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 300px;
    }
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Enhanced Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(102, 126, 234, 0.05) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 20px;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02) rotateX(2deg);
    box-shadow: 
        0 25px 50px rgba(102, 126, 234, 0.25),
        0 10px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery .gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    background: white;
    border: 4px solid;
    border-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%) 1;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 8px 25px rgba(102, 126, 234, 0.15),
        0 3px 10px rgba(0, 0, 0, 0.1);
}

.gallery .gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.05) 0%, 
        rgba(118, 75, 162, 0.02) 50%, 
        rgba(102, 126, 234, 0.05) 100%);
    border-radius: 16px;
    pointer-events: none;
    z-index: -1;
}

.gallery .gallery-image img {
    max-width: calc(100% - 40px);
    max-height: calc(100% - 40px);
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.02) contrast(1.01);
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.gallery-item:hover .gallery-image {
    border-image: linear-gradient(135deg, #764ba2 0%, #667eea 100%) 1;
    background: white;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(118, 75, 162, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover .gallery-image::before {
    background: linear-gradient(135deg, 
        rgba(118, 75, 162, 0.08) 0%, 
        rgba(102, 126, 234, 0.04) 50%, 
        rgba(118, 75, 162, 0.08) 100%);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.03) saturate(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.gallery .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.95), 
        rgba(118, 75, 162, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    z-index: 3;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    pointer-events: auto;
}

.gallery .gallery-content {
    text-align: center;
    color: white;
    transform: translateY(30px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    z-index: 4;
    pointer-events: auto;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0) scale(1);
}

.gallery .gallery-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery .gallery-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.gallery .gallery-content .btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.gallery .gallery-content .btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.gallery .gallery-image:hover .gallery-overlay {
    display: none;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .product-gallery-section {
        padding: 40px 20px;
        margin-bottom: 60px;
    }
    
    .gallery-header h3 {
        font-size: 2rem;
    }
    
    .gallery-header p {
        font-size: 1rem;
        max-width: 500px;
    }
    
    .gallery {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery .gallery-image {
        height: 250px;
    }
    
    .gallery .gallery-content h3 {
        font-size: 1.5rem;
    }
    
    .gallery .gallery-content p {
        font-size: 1rem;
    }
    
    .gallery-item:hover {
        transform: translateY(-10px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .product-gallery-section {
        padding: 30px 15px;
        margin-bottom: 40px;
    }
    
    .gallery-header h3 {
        font-size: 1.8rem;
    }
    
    .gallery-header p {
        font-size: 0.95rem;
        max-width: 400px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery .gallery-image {
        height: 200px;
    }
    
    .gallery .gallery-content h3 {
        font-size: 1.3rem;
    }
    
    .gallery .gallery-content p {
        font-size: 0.9rem;
    }
    
    .gallery-item:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

/* Footer Styles */

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-content p {
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start ;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: auto;
}

.form-group {
    margin-bottom: 15px;
}

/* .form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
} */

/* 🔥 INPUT STYLE */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    outline: none;
    transition: 0.3s;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 10px rgba(108,99,255,0.2);
}


.form-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

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

.footer-section {
    position: relative;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px;
}

.footer-logo-img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 12px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.footer-links li::before {
    content: '▸';
    position: absolute;
    left: -20px;
    color: #667eea;
    transition: all 0.3s ease;
    font-weight: bold;
    top: 2px;
}

.footer-links li:hover::before {
    transform: translateX(5px);
    color: #764ba2;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    vertical-align: top;
    line-height: 1.4;
}

.footer-links a:hover {
    color: #667eea;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.footer-links i {
    margin-right: 10px;
    color: #667eea;
    font-size: 14px;
    vertical-align: top;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
    margin-top: 2px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }

    .nav-brand .logo .logo-img {
        width: 180px;
        height: 50px;
        margin-right: 0;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        /* Slide-in sidebar (instead of full-width dropdown) */
        left: 0;
        display: flex;
        flex-direction: column;
        width: min(320px, 85vw);
        height: calc(100vh - 70px);
        background: white;
        transition: transform 0.3s ease;
        transform: translateX(-105%);
        padding: 24px 18px 18px;
        border-radius: 0 18px 18px 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1100;
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateX(0);
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    /* Make nav items look like a proper sidebar menu */
    .nav-list > li {
        width: 100%;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        padding: 12px 14px;
        border-radius: 12px;
        box-sizing: border-box;
        color: #1f2937;
        font-weight: 600;
        background: transparent;
    }

    /* The desktop active underline doesn't look good in sidebar */
    .nav-link.active::after {
        display: none;
    }

    /* Sidebar hover/active polish */
    .nav-link:hover {
        background: rgba(102, 126, 234, 0.08);
    }

    .nav-link.active {
        background: rgba(102, 126, 234, 0.12);
        color: #4f46e5;
    }

    .nav-list .btn {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        border-radius: 12px;
        box-sizing: border-box;
    }

    .nav-toggle {
        display: flex;
        z-index: 1200;
    }

    .dropdown-menu,
    .submenu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0;
        width: 100%;
        min-width: 0;
        left: auto;
        right: auto;
        border-radius: 12px;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
        pointer-events: none;
    }

    .dropdown.open > .dropdown-menu,
    .submenu.open > .submenu {
        opacity: 1;
        visibility: visible;
        margin-top: 10px;
        padding: 6px 0;
        max-height: 500px; /* enough room for submenu items */
        pointer-events: auto;
    }

    .dropdown-menu a {
        padding: 10px 14px 10px 34px; /* indent submenu items */
        border-radius: 10px;
    }

    .dropdown-menu li {
        width: 100%;
    }

    /* Dropdown arrow for mobile sidebar */
    .dropdown > .nav-link {
        position: relative;
        padding-right: 40px;
    }

    .dropdown > .nav-link::after {
        content: '▾';
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        color: rgba(31, 41, 55, 0.7);
        transition: transform 0.2s ease;
        pointer-events: none;
    }

    .dropdown.open > .nav-link::after {
        transform: translateY(-50%) rotate(180deg);
        color: rgba(79, 70, 229, 0.95);
    }

    /* Hero Carousel Responsive */
    .hero {
        height: 100vh;
        min-height: auto;
    }

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

    .hero-tagline {
        font-size: 18px;
    }

    .main-logo {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
     .carousel-slide img {
        content: url('./images/wallpaper_img/bg_1_new_1.png');
        height: 100%;
        object-fit: cover;
        display: block;
    }
   
    /* About Us Responsive */
    .about-intro {
        padding: 0 20px;
    }

    .company-profile,
    .who-we-are,
    .our-mission,
    .orlen-difference,
    .product-range,
    .why-choose-us {
        padding: 30px 20px;
    }

    .product-table {
        font-size: 14px;
    }

    .product-table th,
    .product-table td {
        padding: 10px;
    }

    /* Director's Message Responsive */
    .message-content {
        padding: 30px 20px;
    }

    /* Products Responsive */
    .product-details {
        grid-template-columns: 1fr;
    }

    .product-image {
        padding: 20px;
    }

    .product-info {
        padding: 30px 20px;
    }

    .category-header {
        padding: 20px;
    }

    .category-header h3 {
        font-size: 24px;
    }

    /* Inquiry Responsive */
    .inquiry-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .inquiry .container{
   
    padding: 0 10px;
}
    .form-row {
        grid-template-columns: 1fr;
    }

    /* .inquiry-form-container {
        padding: 30px 20px;
    } */

    /* 🔥 FORM CARD */
.inquiry-form-container {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .inquiry-info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .inquiry-info .info-card {
        flex: 1;
        min-width: 250px;
        padding: 20px;
    }

    .inquiry-info .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .inquiry-info .info-card h4 {
        font-size: 1.1rem;
    }

    .inquiry-info .info-card p,
    .inquiry-info .info-card a {
        font-size: 0.9rem;
    }

    .info-card {
        flex: 1;
        min-width: 200px;
        padding: 20px;
    }

    /* Contact Responsive */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-form {
        padding: 30px 20px;
    }

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

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

    .footer-links {
        text-align: center;
    }

    .footer-links i {
        margin-right: 10px;
    }
    
    /* Mobile Contact Info Justification */
    .footer-section:last-child .footer-links li {
        text-align: justify;
        text-justify: inter-word;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .main-logo {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .product-gallery {
        margin-top: 30px;
    }

    .product-gallery h4 {
        color: #333;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 20px;
        text-align: center;
    }

    .gallery-images {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-bottom: 20px;
    }

    .gallery-images img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 8px;
        border: 2px solid #e9ecef;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .gallery-images img:hover {
        transform: scale(1.05);
        border-color: #667eea;
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
    }

    .product-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-image img {
        height: 250px;
    }
    
    .sku-list {
        justify-content: center;
    }
    
    .about-intro {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .company-profile, .who-we-are, .our-mission, .orlen-difference {
        padding: 30px 20px;
    }
    
    .company-profile h3, .who-we-are h3, .our-mission h3, .orlen-difference h3 {
        font-size: 1.5rem;
        padding-left: 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .company-profile h3 i, .who-we-are h3 i, .our-mission h3 i, .orlen-difference h3 i {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .message-content {
        padding: 0 10px;
    }
    
    .message-content p {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Hero Small Mobile */
    .hero {
        height: 70vh;
        min-height: 400px;
    }

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

    .hero-tagline {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .main-logo {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .carousel-indicators {
        bottom: 20px;
        gap: 10px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    /* Section Headers Small Mobile */
    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    /* About Us Small Mobile */
    .company-profile h3,
    .who-we-are h3,
    .our-mission h3,
    .orlen-difference h3,
    .product-range h3,
    .why-choose-us h3 {
        font-size: 22px;
    }

    .about-intro p,
    .company-profile p,
    .who-we-are p,
    .our-mission p,
    .why-choose-us p {
        font-size: 15px;
    }

    /* Products Small Mobile */
    .category-header h3 {
        font-size: 20px;
    }

    .category-header p {
        font-size: 14px;
    }

    .product-image {
        padding: 15px;
    }

    .product-info {
        padding: 20px 15px;
    }

    .skus h4,
    .overview h4,
    .features h4 {
        font-size: 18px;
    }

    .sku {
        font-size: 11px;
        padding: 6px 10px;
    }

    .features li {
        font-size: 14px;
    }

    /* Inquiry Small Mobile */
    .inquiry-form {
        padding: 20px 15px;
    }

    .info-card {
        flex: 1;
        min-width: 100%;
        padding: 15px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .info-card h4 {
        font-size: 16px;
    }

    .info-card p {
        font-size: 13px;
    }

    /* Contact Small Mobile */
    .contact-form {
        padding: 20px 15px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .contact-details h4 {
        font-size: 16px;
    }

    .contact-details p {
        font-size: 14px;
    }

    /* Footer Small Mobile */
    .footer-logo {
        font-size: 20px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-links li {
        font-size: 14px;
    }
}






.products {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-category {
    background: white;
    border-radius: 15px;
    padding: 0;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

	
/* Product Image Section */
.product-image-section {
    position: relative;
    z-index: 2;
}

.main-image-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* View More Photos Button */
.view-more-photos {
    text-align: center;
    margin-top: 20px;
}

.view-more-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Floating Contact Icons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.phone-float, .whatsapp-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-float {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-float {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.phone-float:hover, .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.phone-float::before, .whatsapp-float::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.phone-float:hover::before, .whatsapp-float:hover::before {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .phone-float, .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Form Messages */
.form-message {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Simple Mobile Fixes */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
        padding: 20px;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        padding: 15px;
    }
    
    .contact-icon {
        min-width: 40px;
        height: 40px;
        margin-right: 0px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 50%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }
    
    .contact-details {
        flex: 1;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .contact-details * {
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
    }
    
    .contact-details h4 {
        font-size: 16px !important;
        margin-bottom: 5px !important;
        color: #666 !important;
        font-weight: 600 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .contact-details p {
        font-size: 14px !important;
        line-height: 1.4 !important;
        color: #666 !important;
        margin: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}






.footer-logo {
    justify-content: center;
}
.footer-content .footer-section:last-child {
    text-align: left;
}
.footer-content .footer-section:last-child .footer-links {
    text-align: left;
}
.footer-content .footer-section:last-child .footer-links li {
    justify-content: flex-start;
}
@media (max-width: 768px) {
    /* On mobile, let the active slide define hero height (no bottom blank). */
    .hero {
        height: auto !important;
        min-height: 400px !important;
        overflow: hidden;
        position: relative;
    }

    /* Keep hero buttons overlay on top of the carousel. */
    .hero > .container {
        position: absolute;
        inset: 0;
        z-index: 3;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
    }

    .hero > .container .hero-content {
        pointer-events: auto;
    }

    /* Make carousel part of layout so its active image height is respected. */
    .hero-carousel {
        position: relative;
        height: auto;
    }

    /* Only active slide should take layout space. */
    .carousel-slide {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        opacity: 0;
        display: none;
    }

    .carousel-slide.active {
        display: block;
        opacity: 1;
    }

    .hero .carousel-slide img {
        height: auto !important;
        min-height: 0 !important;
        object-fit: contain !important;
        animation: none !important;
        transform: none !important;
        background: #000;
        display: block;
    }

    .carousel-overlay {
        position: absolute;
        inset: 0;
    }
}