 /* Map Section */
        .map-section {
            margin-bottom: 60px;
        }
        
        .map-container {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .map-header {
            background-color: var(--primary-color);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .map-header h2 {
            font-size: 1.8rem;
            margin-bottom: 5px;
        }
        
        .map-wrapper {
            height: 400px;
            position: relative;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .map-placeholder {
            text-align: center;
            color: #666;
        }
        
        .map-placeholder i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .company-intro {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .company-details {
            flex: 1;
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .company-details h2 {
            color: #0056b3;
            margin-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 10px;
        }
        
        .details-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .detail-item {
            display: flex;
            flex-direction: column;
        }
        
        .detail-item label {
            font-weight: 600;
            color: #555;
            margin-bottom: 5px;
        }
        
        .detail-item span {
            color: #333;
        }
        
        .company-gallery {
            flex: 1;
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .company-gallery h2 {
            color: #0056b3;
            margin-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 10px;
        }
        
        .gallery-container {
            position: relative;
            overflow: hidden;
            border-radius: 6px;
            height: 300px;
        }
        
        .gallery-images {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }
        
        .gallery-images img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            flex-shrink: 0;
        }
        
        .gallery-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }
        
        .gallery-controls button {
            background-color: rgba(0,0,0,0.5);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 10px;
            transition: background-color 0.3s;
        }
        
        .gallery-controls button:hover {
            background-color: rgba(0,0,0,0.8);
        }
        
        .gallery-thumbnails {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            overflow-x: auto;
        }
        
        .thumbnail {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 4px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.3s;
        }
        
        .thumbnail.active {
            border-color: #0056b3;
        }
        
        .quality-section {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 40px;
        }
        
        .quality-section h2 {
            color: #0056b3;
            margin-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 10px;
        }
        
        .certifications {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .certification-card {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background-color: #f9f9f9;
            border-radius: 6px;
            width: calc(50% - 10px);
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        
        .certification-card i {
            font-size: 2rem;
            color: #0056b3;
        }
        
        .certification-details h3 {
            margin-bottom: 5px;
            color: #333;
        }
        
        .certification-details p {
            color: #666;
            font-size: 0.9rem;
        }
        
        .facility-section {
            margin-bottom: 40px;
        }
        
        .facility-section h2 {
            color: #0056b3;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .facility-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .facility-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .facility-card:hover {
            transform: translateY(-5px);
        }
        
        .facility-card img {
            width: 100%;
            height: 200px;
            object-fit:contain;
        }
        
        .facility-card-content {
            padding: 15px;
        }
        
        .facility-card-content h3 {
            margin-bottom: 8px;
            color: #333;
        }
        
        .facility-card-content p {
            color: #666;
            font-size: 0.9rem;
        }:root {
    --primary-color: #ff6b35;
    --secondary-color: #004643;
    --accent-color: #abd1c6;
    --dark-color: #1a1a1a;
    --light-color: #f9f9f9;
    --text-color: #333;
}

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Rajdhani', sans-serif;
        }
        
        :root {
            --primary-color: #0a4d8c;
            --secondary-color: #f39c12;
            --accent-color: #2c3e50;
            --light-color: #f8f9fa;
            --dark-color: #2c3e50;
            --text-color: #333;
            --transition: all 0.3s ease;
        }
        
        body {
            background-color: #f5f5f5;
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo i {
            font-size: 2rem;
            color: var(--secondary-color);
        }
        
        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
        }
        
    
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* About Section */
        .about {
            background-color: white;
        }
        
        .about-content {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .about-image {
            flex: 1;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Registration Badges */
        .registration-badges {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        
        .badge {
            background-color: var(--light-color);
            padding: 15px 25px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .badge i {
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .badge span {
            font-weight: 600;
        }
        
        /* Products Section */
        .products {
            background-color: #f9f9f9;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-content {
            padding: 25px;
        }
        
        .product-content h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .product-content p {
            margin-bottom: 20px;
        }
        
        /* Process Section */
        .process {
            background-color: white;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 50px;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 3px;
            background-color: var(--light-color);
            z-index: 1;
        }
        
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 30%;
            position: relative;
            z-index: 2;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .step-content {
            text-align: center;
            background-color: var(--light-color);
            padding: 20px;
            border-radius: 8px;
            width: 100%;
        }
        
        .step-content h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        /* Equipment Section */
        .equipment {
            background-color: #f9f9f9;
        }
        
        .equipment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .equipment-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        
        .equipment-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .equipment-card i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .equipment-card h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        /* Quality Section */
        .quality {
            background-color: white;
        }
        
        .quality-content {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        
        .quality-text {
            flex: 1;
        }
        
        .quality-text h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .quality-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .quality-image {
            flex: 1;
        }
        
        .quality-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
       
        
        /* Team Section */
        .team {
            background-color: #f9f9f9;
        }
        
        .team-content {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        
        .team-text {
            flex: 1;
        }
        
        .team-text h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .team-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .team-image {
            flex: 1;
        }
        
        .team-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Gallery Section */
        .gallery {
            background-color: white;
        }
        
        .gallery-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
        }
        
        .tab-btn {
            background: none;
            border: none;
            padding: 12px 25px;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-color);
            cursor: pointer;
            position: relative;
            transition: var(--transition);
        }
        
        .tab-btn.active {
            color: var(--primary-color);
        }
        
        .tab-btn::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--secondary-color);
            transition: width 0.3s ease;
        }
        
        .tab-btn.active::after {
            width: 100%;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: var(--transition);
            height: 280px;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            color: white;
            transform: translateY(100%);
            transition: var(--transition);
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        .gallery-overlay h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .gallery-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Contact Section */
        .contact {
            background-color: #f9f9f9;
        }
        
        .contact-container {
            display: flex;
            gap: 40px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .contact-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-top: 5px;
        }
        
        .contact-item-content h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .contact-form {
            flex: 1;
            background-color: white;

            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
        }
        
        .form-group textarea {
            height: 120px;
            resize: vertical;
        }
        
       
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content,
            .quality-content,
            .team-content,
            .contact-container {
                flex-direction: column;
            }
            
            .process-steps {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }
            
            .process-steps::before {
                width: 3px;
                height: 100%;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
            }
            
            .step {
                width: 80%;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            
       
            
            .hero-content h2 {
                font-size: 2.5rem;
            }
            
            .gallery-tabs {
                flex-wrap: wrap;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 15px;
            }
            
            .product-grid,
            .equipment-grid {
                grid-template-columns: 1fr;
            }
            
            
            
            .registration-badges {
                flex-direction: column;
                align-items: center;
            }
        }

/* Navigation in Header */
nav {
    background-color: transparent;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 80%;
}

nav ul li a:hover {
    color: #F39C12;
}

/* Enhanced Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown > a {
    padding-right: 30px;
}

.dropdown > a i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a2a2a 100%);
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px) scale(1);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--primary-color);
}

.dropdown-menu-header {
    background-color: var(--primary-color);
    padding: 15px 20px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: white;
    display: flex;
    align-items: center;
}

.dropdown-menu-header i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.dropdown-menu-list {
    display: block;
    width: 100%;
}

.dropdown-menu li {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
}

.dropdown-menu li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--primary-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.dropdown-menu li:hover::before {
    transform: translateX(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 5px 20px 5px 25px;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-transform: none;
    transition: all 0.3s ease;
    width: 100%;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 107, 53, 0.1);
    color: white;
    padding-left: 35px;
}

.dropdown-menu li a span {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 3px;
}

.dropdown-menu li a .product-info {
    flex: 1;
}

/* Hero Section with Image Slider */
.hero {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color) 0%, transparent 100%);
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: white;
    padding-left: 80px;
}

.hero-content h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-content h2 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 80px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.1);
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background-color: var(--primary-color);
}

.slider-prev {
    left: 40px;
}

.slider-next {
    right: 40px;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: -1;
    border-radius: 5px;
}

/* Products Section */
.products {
    padding: 100px 0;
    background-color: var(--light-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleY(1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 600;
}

.product-info p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.product-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.product-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.product-link:hover i {
    transform: translateX(5px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: white;
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
    background-color: var(--secondary-color);
    padding: 50px;
    color: white;
    border-radius: 5px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-item p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.contact-form {
    flex: 1;
    background-color: var(--light-color);
    padding: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 5px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 600;
    color: #F39C12;
}

.footer-column p {
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 10px;
    color:#F39C12;
}

.footer-links a:hover {
    color:#F39C12;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #F39C12;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content,
    .contact-container {
        flex-direction: column;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(0, 70, 67, 0.9);
        margin-top: 10px;
        border-radius: 5px;
        max-width: 100%;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .hero-content {
        padding-left: 30px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .slider-controls {
        left: 30px;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}