/* Paris Pharma Pvt. Ltd. - Static Website CSS */

/* Floating Icons Styles */
.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-whatsapp {
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.floating-phone {
    background-color: #2196F3;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.floating-phone:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .floating-icons {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-whatsapp,
    .floating-phone {
        width: 50px;
        height: 50px;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* About page specific background */
body.about-page {
    background-image: url('static/about bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* About page hero section background */
body.about-page .hero {
    background-image: url('static/about hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

body.about-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

body.about-page .hero .container {
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.logo:hover {
    color: #ecf0f1;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

nav a:hover {
    color: #3498db;
    border-bottom: 2px solid #3498db;
}

/* Mobile Menu Toggle */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Enhanced Hero Section */
.hero {
    padding: 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    color: white;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    background: #27ae60;
}

.btn-secondary:hover {
    background: #229954;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #3498db;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    transform: translateY(0);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #3498db);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.product-card:hover::before {
    transform: translateX(0);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.3);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(1);
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.1);
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(52, 152, 219, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-info {
    padding: 2rem;
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.product-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-name::before {
    content: '💊';
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.product-description {
    color: #5d6d7e;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
    padding-left: 1rem;
}

.product-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #3498db, #2ecc71);
    border-radius: 2px;
}

.btn-enquire {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-enquire::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-enquire:hover::before {
    left: 100%;
}

.btn-enquire:hover {
    background: linear-gradient(135deg, #2980b9, #21618c);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.btn-enquire:active {
    transform: translateY(-1px);
}

/* Enhanced Hero Section */
.hero {
    padding: 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    object-position: center;
    transform: scale(1.05);
    transition: all 0.6s ease;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    animation: slideContentUp 1s ease-out;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.slide-buttons .btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.slide-buttons .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slide-buttons .btn-secondary {
    background: rgba(52, 152, 219, 0.8);
    border-color: rgba(52, 152, 219, 0.9);
}

.slide-buttons .btn-secondary:hover {
    background: rgba(52, 152, 219, 0.9);
    border-color: rgba(52, 152, 219, 1);
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.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.7);
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Slide Animation */
@keyframes slideContentUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Responsive Hero Section */
@media (max-width: 1200px) {
    .hero {
        min-height: 90vh;
    }
    
    .hero .container {
        padding: 1.5rem;
        max-width: 700px;
    }
    
    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1.2rem;
        line-height: 1.1;
    }
    
    .hero p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
}

/* Responsive Hero Section */
@media (max-width: 1200px) {
    .hero {
        min-height: 90vh;
    }
    
    .hero .container {
        padding: 1.5rem;
        max-width: 700px;
    }
    
    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1.2rem;
        line-height: 1.1;
    }
    
    .hero p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
}

@media (max-width: 1200px) {
    .hero-slider {
        height: 80vh;
    }
    
    .slide img {
        transform: scale(1.08);
    }
    
    .slide-content {
        width: 95%;
    }
    
    .slide-content h1 {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    .slide-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .slide-buttons {
        gap: 0.8rem;
    }
    
    .slide-buttons .btn {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        padding: 0.8rem 1.2rem;
    }
    
    .slider-prev {
        left: 1rem;
    }
    
    .slider-next {
        right: 1rem;
    }
    
    .slider-indicators {
        bottom: 1.5rem;
        gap: 0.8rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    
    .hero .container {
        padding: 1rem;
        max-width: 600px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    }
    
    .hero .btn {
        display: block;
        width: 200px;
        margin: 0 auto 0.5rem;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-slider {
        height: 70vh;
    }
    
    .slide img {
        transform: scale(1.1);
    }
    
    .slide-content {
        width: 95%;
        padding: 0 1rem;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .slide-buttons .btn {
        width: 200px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        text-align: center;
    }
    
    .slider-prev,
    .slider-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        padding: 0.6rem 1rem;
        background: rgba(255, 255, 255, 0.3);
    }
    
    .slider-prev {
        left: 0.5rem;
    }
    
    .slider-next {
        right: 0.5rem;
    }
    
    .slider-indicators {
        bottom: 1rem;
        gap: 0.75rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero .container {
        padding: 0.75rem;
        max-width: 400px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        line-height: 1.1;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        line-height: 1.3;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }
    
    .hero .btn {
        width: 180px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-slider {
        height: 60vh;
    }
    
    .slide img {
        transform: scale(1.15);
    }
    
    .slide-content {
        width: 98%;
        padding: 0 0.5rem;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.1;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    
    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .slide-buttons .btn {
        width: 180px;
        padding: 0.75rem 1.2rem;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        padding: 0.5rem 0.8rem;
        background: rgba(255, 255, 255, 0.4);
    }
    
    .slider-prev {
        left: 0.25rem;
    }
    
    .slider-next {
        right: 0.25rem;
    }
    
    .slider-indicators {
        bottom: 0.5rem;
        gap: 0.5rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}

/* Touch device optimizations for slider */
@media (hover: none) and (pointer: coarse) {
    .slider-prev,
    .slider-next {
        background: rgba(255, 255, 255, 0.4);
        border-color: rgba(255, 255, 255, 0.6);
        width: 50px;
        height: 50px;
    }
    
    .slider-prev:hover,
    .slider-next:hover {
        background: rgba(255, 255, 255, 0.4);
        border-color: rgba(255, 255, 255, 0.6);
        transform: translateY(-50%);
    }
    
    .indicator {
        background: rgba(255, 255, 255, 0.8);
        width: 12px;
        height: 12px;
    }
    
    .indicator.active {
        background: white;
        transform: scale(1.3);
    }
    
    .slide-buttons .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .mobile-menu {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Enhanced Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #3498db);
    border-radius: 2px;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Enhanced Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.75rem 0;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: 260px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
}

.logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Simple Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #3498db;
}

/* Enhanced Mobile Menu */
.mobile-menu {
    display: none;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    position: relative;
    z-index: 1001;
}

.mobile-menu:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.mobile-menu:active {
    transform: scale(0.95);
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #3498db);
    animation: shimmer 3s infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #3498db;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section a:hover {
    color: #3498db;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border: 2px solid rgba(52, 152, 219, 0.3);
}

.social-links a:hover {
    background: #3498db;
    color: white;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(52, 152, 219, 0.2);
    color: #95a5a6;
}

/* Enhanced Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(46, 204, 113, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(1);
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Enhanced About Section */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.1);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #3498db);
    animation: shimmer 3s infinite;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5d6d7e;
    position: relative;
    z-index: 2;
}

.about-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    line-height: 1.3;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.about-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #3498db, #2ecc71);
    border-radius: 2px;
    opacity: 0.6;
}

.about-image {
    position: relative;
    height: 500px;
    width: 400px; 
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

.about-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.products-buttons {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.product-filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Enhanced Contact Form */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #3498db);
    animation: shimmer 3s infinite;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label::before {
    content: '📝';
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 2px solid #e8f4f8;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
    font-family: inherit;
    position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    background: white;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bdc3c7;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.form-message {
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 500;
    position: relative;
    animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: linear-gradient(145deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 1px solid #b8daff;
}

.form-message.error {
    background: linear-gradient(145deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border: 1px solid #f1b0b7;
}

.form-message.info {
    background: linear-gradient(145deg, #d1ecf1, #bee5eb);
    color: #0c5460;
    border: 1px solid #abdde5;
}

/* Enhanced Contact Info Cards */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #3498db);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-card:hover::before {
    transform: translateX(0);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-card p {
    color: #5d6d7e;
    line-height: 1.6;
    font-size: 1rem;
}

/* Enhanced Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, #2980b9, #21618c);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: linear-gradient(135deg, #27ae60, #229954);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #229954, #1e8449);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Section Backgrounds */
section {
    padding: 80px 0;
    position: relative;
}

section:nth-child(even) {
    background: linear-gradient(145deg, #f8f9fa 0%, #e8f4f8 100%);
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Enhanced Scroll Effects */
html {
    scroll-behavior: smooth;
}

/* Enhanced Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.3), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Modern Mission Vision Card Section */
.mission-vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 50%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
}

.mission-vision-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-vision-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 300;
    position: relative;
}

.mission-vision-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.mission-vision-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #3498db);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.mission-vision-card:hover::before {
    transform: translateX(0);
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: rgba(52, 152, 219, 0.2);
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.mission-vision-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.card-icon {
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 1px;
}

.card-description {
    color: #5d6d7e;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.card-features {
    list-style: none;
    margin-top: 1.5rem;
}

.card-features li {
    padding: 0.5rem 0;
    color: #7f8c8d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.card-features li::before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Special card variations */
.mission-card .card-icon-wrapper {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.vision-card .card-icon-wrapper {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.team-card .card-icon-wrapper {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.quality-card .card-icon-wrapper {
    background: linear-gradient(135deg, #27ae60, #229954);
}

/* Bottom decorative element */
.mission-vision-bottom {
    text-align: center;
    margin-top: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(52, 152, 219, 0.1);
    background: transparent;
}

.mission-vision-bottom p {
    color: #7f8c8d;
    font-style: italic;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .mission-vision-bottom {
        margin-top: 0;
        padding-top: 0.5rem;
    }
    
    .mission-vision-title {
        font-size: 2rem;
    }
    
    .mission-vision-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-vision-card {
        padding: 2rem;
    }
    
    .card-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .card-icon {
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .mission-vision-section {
        padding: 40px 0;
    }
    
    .mission-vision-bottom {
        margin-top: 0;
        padding-top: 0.25rem;
    }
    
    .mission-vision-container {
        padding: 0 15px;
    }
    
    .mission-vision-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
}

/* Modern Showcase Section */
.showcase-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e8f4f8 100%);
    position: relative;
    overflow: hidden;
}

.showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #3498db);
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.showcase-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.showcase-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.showcase-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: rgba(52, 152, 219, 0.2);
}

.showcase-card-image {
    height: 250px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    position: relative;
    overflow: hidden;
}

.showcase-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-card:hover .showcase-card-image img {
    transform: scale(1.1);
}

.showcase-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.showcase-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.showcase-card-content {
    padding: 2rem;
}

.showcase-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.showcase-card-description {
    color: #5d6d7e;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.showcase-card-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.showcase-card-features li {
    padding: 0.5rem 0;
    color: #7f8c8d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.showcase-card-features li::before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.showcase-card-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.showcase-card-action:hover {
    color: #2980b9;
    transform: translateX(5px);
}

/* Featured Badge */
.showcase-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Showcase */
.showcase-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border-radius: 20px;
    text-align: center;
}

.showcase-stat {
    color: white;
}

.showcase-stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #ecf0f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .showcase-section {
        padding: 60px 0;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .showcase-subtitle {
        font-size: 1rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-card {
        border-radius: 15px;
    }
    
    .showcase-card-content {
        padding: 1.5rem;
    }
    
    .showcase-card-title {
        font-size: 1.3rem;
    }
    
    .showcase-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .showcase-stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .showcase-section {
        padding: 40px 0;
    }
    
    .showcase-container {
        padding: 0 15px;
    }
    
    .showcase-header {
        margin-bottom: 3rem;
    }
    
    .showcase-card-image {
        height: 200px;
    }
    
    .showcase-card-content {
        padding: 1.5rem;
    }
    
    .showcase-card-title {
        font-size: 1.2rem;
    }
    
    .showcase-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .showcase-stat-number {
        font-size: 2rem;
    }
}

/* Contact Form Styles */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e8f4f8;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    background: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bdc3c7;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.form-message {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Button variations */
.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 150px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, #21618c);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: #ecf0f1;
    color: #2c3e50;
    border: 2px solid #bdc3c7;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 150px;
}

.btn-secondary:hover {
    background: #bdc3c7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(189, 195, 199, 0.3);
}

/* Responsive Contact Form */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .form-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .form-actions {
        gap: 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        max-width: 500px;
    }
    
    .hero .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }
    
    .about-text {
        order: 2;
        text-align: center;
    }
    
    .about-image {
        order: 1;
        height: 300px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-text p {
        text-align: center;
        padding-left: 0;
    }
    
    .about-text p::before {
        display: none;
    }
    
    .about-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .about-buttons .btn {
        width: 200px;
        text-align: center;
    }
    
    .products-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .products-buttons .btn {
        width: 200px;
        text-align: center;
    }
    
    .product-filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .product-filter-buttons .btn {
        width: 200px;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .mission-vision-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }
    
    .mission-vision-card {
        padding: 2rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-card-image {
        height: 200px;
    }
    
    .showcase-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .showcase-stat-number {
        font-size: 2.5rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 10px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.25rem;
        display: block;
        width: 200px;
        margin: 0.5rem auto;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title::after {
        width: 80px;
        height: 3px;
    }
    
    .header-content {
        padding: 0.5rem 0;
        position: relative;
    }
    
    .logo-image {
        height: 50px;
        width: 220px;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 25px 25px;
        border-top: 3px solid #3498db;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        text-align: center;
        padding: 0.8rem 0;
    }
    
    nav a {
        display: block;
        padding: 1rem 1.5rem;
        color: #2c3e50;
        font-weight: 600;
        font-size: 1rem;
        transition: color 0.3s ease;
    }
    
    nav a:hover {
        color: #3498db;
    }
    
    .mobile-menu {
        display: block;
        padding: 0.6rem;
        font-size: 1.3rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .product-description {
        font-size: 0.95rem;
    }
    
    .btn-enquire {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .gallery-overlay h4 {
        font-size: 1.1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.9rem;
    }
    
    .about-content {
        padding: 1.5rem;
        gap: 1.5rem;
        text-align: center;
    }
    
    .about-text {
        font-size: 1rem;
        text-align: center;
        order: 2;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
    }
    
    .about-text p {
        text-align: center;
        padding-left: 0;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .about-text p::before {
        display: none;
    }
    
    .about-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .about-buttons .btn {
        width: 180px;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .products-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .products-buttons .btn {
        width: 180px;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .product-filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .product-filter-buttons .btn {
        width: 180px;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .about-image {
        height: 250px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        order: 1;
    }
    
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .mission-vision-title {
        font-size: 1.8rem;
    }
    
    .mission-vision-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-vision-card {
        padding: 1.5rem;
    }
    
    .card-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .card-icon {
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
    
    .showcase-section {
        padding: 60px 0;
    }
    
    .showcase-title {
        font-size: 1.8rem;
    }
    
    .showcase-subtitle {
        font-size: 1rem;
    }
    
    .showcase-card {
        border-radius: 15px;
    }
    
    .showcase-card-content {
        padding: 1.5rem;
    }
    
    .showcase-card-title {
        font-size: 1.2rem;
    }
    
    .showcase-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .showcase-stat-number {
        font-size: 2rem;
    }
    
    .showcase-stat-label {
        font-size: 0.9rem;
    }
    
    .contact-form-container {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-card .icon {
        font-size: 2.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
    }
    
    .contact-card p {
        font-size: 0.95rem;
    }
    
    footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero .btn {
        width: 180px;
        padding: 0.75rem 1.2rem;
        font-size: 0.85rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title::after {
        width: 60px;
    }
    
    .logo-image {
        height: 60px;
    }
    
    .mobile-menu {
        padding: 0.6rem;
        font-size: 1.2rem;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 1.2rem;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .product-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .btn-enquire {
        padding: 0.75rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .gallery-overlay {
        padding: 1rem 0.75rem 0.75rem;
    }
    
    .gallery-overlay h4 {
        font-size: 1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.85rem;
    }
    
    .about-content {
        padding: 1rem;
        gap: 1rem;
        text-align: center;
    }
    
    .about-text {
        font-size: 0.95rem;
        text-align: center;
        order: 2;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
        text-align: center;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
    }
    
    .about-text p {
        text-align: center;
        padding-left: 0;
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    
    .about-text p::before {
        display: none;
    }
    
    .about-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-top: 0.8rem;
    }
    
    .about-buttons .btn {
        width: 160px;
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        text-align: center;
    }
    
    .products-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .products-buttons .btn {
        width: 160px;
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        text-align: center;
    }
    
    .product-filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .product-filter-buttons .btn {
        width: 160px;
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        text-align: center;
    }
    
    .about-image {
        height: 200px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        order: 1;
    }
    
    .mission-vision-section {
        padding: 50px 0;
    }
    
    .mission-vision-title {
        font-size: 1.5rem;
    }
    
    .mission-vision-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .mission-vision-card {
        padding: 1.2rem;
    }
    
    .card-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .card-icon {
        font-size: 1.3rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .showcase-section {
        padding: 50px 0;
    }
    
    .showcase-title {
        font-size: 1.5rem;
    }
    
    .showcase-subtitle {
        font-size: 0.95rem;
    }
    
    .showcase-card-content {
        padding: 1.2rem;
    }
    
    .showcase-card-title {
        font-size: 1.1rem;
    }
    
    .showcase-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 0.75rem;
    }
    
    .showcase-stat-number {
        font-size: 1.8rem;
    }
    
    .showcase-stat-label {
        font-size: 0.85rem;
    }
    
    .contact-form-container {
        padding: 1rem 0.75rem;
        margin: 0 0.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 0.75rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-card .icon {
        font-size: 2rem;
    }
    
    .contact-card h3 {
        font-size: 1rem;
    }
    
    .contact-card p {
        font-size: 0.85rem;
    }
    
    footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover {
        transform: none;
    }
    
    .gallery-item:hover {
        transform: none;
    }
    
    .mission-vision-card:hover {
        transform: none;
    }
    
    .contact-card:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .btn-enquire:hover {
        transform: none;
    }
    
    /* Add touch feedback */
    .product-card:active,
    .gallery-item:active,
    .mission-vision-card:active,
    .contact-card:active,
    .btn:active,
    .btn-enquire:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .product-image img,
    .gallery-item img,
    .about-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark mode support (optional enhancement) */
@media (prefers-color-scheme: dark) {
    /* This can be implemented later if needed */
}

/* Print styles */
@media print {
    header, footer, .hero, .btn-enquire {
        display: none;
    }
    
    .product-card,
    .gallery-item,
    .mission-vision-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .section-title {
        color: #000;
    }
    
    body {
        color: #000;
        background: white;
    }
}
