:root {
    --primary-color: #3E4095; /* Updated primary color */
    --secondary-color: #1a1a1a;
    --background-color: #fff8f2;
    --text-color: #333;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

html {
    scroll-padding-top: 50px; /* This ensures content doesn't hide under the nav */
}
/* Mobile layout */
@media (max-width: 768px) {
    body {
        margin: 0;
        font-size: 14px;
    }
}

a{
    text-decoration: none;
    color: #3E4095;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    background: white;
    border-bottom: 1px solid #eee; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

main {
    margin-top: 0;
}

@media (max-width: 768px) {
    main {
        margin-top: 0; /* Remove the margin for mobile as well */
    }
}

.logo img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

@media (max-width: 1080px) {
    .logo img {
        height: 50px;
        width: auto;
    }
    
    header {
        padding: 8px 15px;
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 70%;
    background-color: #3E4095;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1080px) {
    .menu-toggle {
        display: flex;
    }
    
    header {
        padding: 10px 0px;
        flex-wrap: wrap;
    }
    
   /* Mobile navigation styles */
@media (max-width: 1080px) {
    nav {
        width: 100%;
        order: 3;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 10px rgba(62, 64, 149, 0.05);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        z-index: 1100;
        border-radius: 0 0 12px 12px;
        margin-top: 0;
        z-index: 1100;
    }

    nav ul.active {
        max-height: 1000px; /* Increased max-height to accommodate dropdown */
        padding: 5px 0;
    }
    nav ul li, 
    .dropdown-menu li {
        width: 100%;
        margin: 0;
    }

    nav ul li a,
    .dropdown-menu li a {
        padding: 12px 20px;
        display: block;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu li a {
        padding-left: 40px;
        background: #f5f5f5;
    }

    .hover-line {
        display: none;
    }
}
}
/* Desktop navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 0px;
    position: relative;
    padding: 0;
    margin: 0;
    z-index: 1100;
}

nav ul li {
    position: relative;
    z-index: 1100;
}

nav ul li a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
    transition: color 0.3s ease-in-out;
    z-index: 1100;
}

.hover-line {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #3E4095;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

nav ul li:hover ~ .hover-line {
    opacity: 1;
    transform: translateX(var(--hover-line-position, 0px));
}

nav ul li:hover a {
    color: #3E4095;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: #3E4095;
    color: white;
}

.hero h1 {
    font-size: 36px;
}

.hero p {
    font-size: 18px;
}
#products {
    text-align: center;
    padding: 10px 10px;
    background: #ffffff; /* Light background for contrast */
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}
.product-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 10px;
}

.product-description {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}
.product-container {
    display: block;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

.product {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden; /* Important for containing the zoomed image */
}

.back-to-categories-btn {
    display: inline-block;
    padding: 10px 15px;
    background: #3E4095;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    font-size: 14px;
    transition: background 0.3s ease-in-out;
    text-align: center;
}

.back-to-categories-btn:hover {
    background: #2d2f6e;
}

.product img {
    width: 100%;
    height: auto; 
    object-fit: contain; 
    border-radius: 15px;
    cursor: zoom-in; 
    transition: transform 0.3s ease-in-out;
}

.product:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(62, 64, 149, 0.05);
}
.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.product-packing {
    color: #666;
    font-size: 0.9rem;
    margin-top: 8px;
}

.product:hover img {
    transform: scale(1.05); /* Zoom effect on image instead of rotation */
}

.product h3 {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #333;
}

.product .product-price {
    font-size: 1rem;
    color: #3E4095;
    font-weight: bold;
    margin-bottom: 10px;
}

.product .details-btn {
    display: inline-block;
    padding: 10px 15px;
    background: #3E4095;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.3s ease-in-out;
}

.product .details-btn:hover {
    background: #2d2f6e;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .product {
        padding: 10px;
    }

    .product h3 {
        font-size: 1rem;
    }

    .product .details-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}
.modern-footer {
    position: relative;
    background: #2B2B2B;
    color: white;
    padding: 0;
    margin-top: 50px;

}

.footer-wave {
    position: relative;
    top: -1px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-content {
    background: #2B2B2B;
    padding: 20px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    padding: 0 15px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
    position: relative;
}

.footer-underline {
    height: 3px;
    width: 50px;
    background: #3E4095;
    margin-bottom: 20px;
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section ul li a {
    text-decoration: none;
    color: #ddd;
    transition: color 0.3s;
    position: relative;
    padding-left: 15px;
}

.footer-section ul li a:before {
    content: "›";
    position: absolute;
    left: 0;
    color: #3E4095;
}

.footer-section ul li a:hover {
    color: #3E4095;
}

.company-info {
    grid-column: span 1;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    filter: none;
    border-radius: 12px;
}

.company-info p {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    width: 50px;
    height: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3E4095;
    transform: translateY(-3px);
}

.footer-bottom {
    background: #222;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

.footer-bottom a {
    color: #3E4095;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-section {
        padding: 0 10px;
    }
    
    .footer-wave svg {
        height: 40px;
    }
}

.about-main {
    padding: 0 0;
    background: #ffffff;
}

.about-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
    padding: 2.5rem;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.card-header {
    position: relative;
    margin-bottom: 1rem;
}

/* Centered Header and Content Styles */
.centered-header {
    display: flex;
    justify-content: center;
    width: 100%;
    background: white;
    border-bottom: 2px solid #ddd;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
} 

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1500px;
    padding: 2px 20px;
}

.centered-content {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
}

@media (max-width: 1080px) {
    .header-container {
        padding: 0px 15px;
        flex-wrap: wrap;
    }
    
    .centered-content {
        padding: 25px;
        margin: 0 5px;
    }
}

.social-links a img {
    width: 40px;
    height: 40px;
}

.header-accent {
    width: 60px;
    height: 4px;
    background: #3E4095;
    border-radius: 2px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.text-block h3 {
    color: #3E4095;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.profile-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.profile-header {
    text-align: center;
    flex: 0 0 200px;
}

.profile-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.team-pill {
    background: #3E4095;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-section {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(62, 64, 149, 0.05);
    padding: 3rem;
    margin: 2rem 0;
    text-align: center;
}

.modern-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #3E4095;
    padding: 1rem 0.7rem;
    margin-left: 5px;
    margin-top: 5px;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 1px 5px 5px rgba(62, 64, 149, 0.15);
}

.modern-cta:hover {
    transform: translateY(-3px);
    box-shadow: 1px 5px 15px rgba(62, 64, 149, 0.3);
}

.arrow {
    transition: transform 0.3s ease;
}

.modern-cta:hover .arrow {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .product-container {
        padding: 0 10px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
        padding: 15px;
    }
    
    .category-card {
        padding: 15px 10px;
        min-height: 100px;
    }
    
    .category-title {
        font-size: 1.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
        padding: 15px;
    }
    
    .product {
        padding: 10px;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .product-page-details {
        padding: 20px 15px;
    }
    
    .product-page-title {
        font-size: 1.5rem;
    }
    
    .product-page-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-page-label {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .product-page-item span {
        max-width: 100%;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 0.5rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .profile-card {
        flex-direction: column;
        text-align: center;
    }
}

.google-form {
    padding: 2rem;
    text-align: center;
    border-radius: 15px;
}

.google-form iframe {
    margin: 0 auto;
    max-width: 100%;
    border: none;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Modern Category and Type Cards */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.category-card {
    position: relative;
    background: linear-gradient(to right, rgba(62, 64, 149, 0.05), rgba(62, 64, 149, 0.1));
    border-radius: 15px;
    padding: 25px 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #3E4095;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(62, 64, 149, 0.05);
    background: linear-gradient(to right, rgba(62, 64, 149, 0.1), rgba(62, 64, 149, 0.05));
}

.category-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #3E4095;
    display: none; /* Hidden as we're using border-left instead */
}

.category-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
}

.category-card::after {
    content: "→";
    position: absolute;
    right: 20px;
    font-size: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #3E4095;
}

.category-card:hover::after {
    opacity: 1;
    right: 15px;
}

.section-title {
    font-size: 28px;
    margin: 10px 0 10px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #3E4095;
    border-radius: 2px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
    }
    
    .category-card {
        padding: 12px 10px;
        min-height: 60px;
    }
    
    .category-title {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 22px;
        margin: 25px 0 10px;
    }
    
    .category-card::after {
        font-size: 16px;
        right: 10px;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .category-card {
        padding: 10px 8px;
        min-height: 50px;
    }
}

.category-card:hover .category-title {
    color: #3E4095;
}

.category-card {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Page Styles */
.product-page-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
}

.product-page-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    align-items: center; /* Center items vertically */
}

.product-page-image {
    flex: 1;
    min-width: 300px;
    max-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    height: 100%;
    margin: 0 auto;
}

.product-detail-image {
    width: 100%; /* Ensure full width */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain;
    border-radius: 15px;
    cursor: zoom-in; /* Indicate zoom functionality */
}

@media (max-width: 768px) {
    .product-page-details {
        flex-direction: column;
        padding: 15px;
    }
    
    .product-page-image {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .product-detail-image {
        max-height: 120px; /* Reduced max-height for mobile */
    }
}

.product-page-card {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
}

@media (max-width: 768px) {
    .product-page-details {
        flex-direction: column;
        padding: 15px;
    }
    
    .product-page-image {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .product-detail-image {
        max-height: 250px;
    }
}

.product-page-title {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.product-page-item {
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 5px;
    gap: 10px; 
}

.product-page-label {
    font-weight: bold;
    color: #555;
    flex-shrink: 0; 
    width: 30%; 
}

.product-page-item span {
    word-wrap: break-word;
    word-break: break-word;
    max-width: 70%; 
    overflow: hidden; 
    text-overflow: ellipsis;
}

.product-page-item.composition {
    max-height: 100px;
    overflow-y: auto; 
    padding-right: 10px; 
}

.product-page-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #3E4095;
    margin-top: 20px;
}

.product-page-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: #3E4095;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    font-size: 1rem;
    text-align: center;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.product-page-btn:hover {
    background: #2d2f6e;
    transform: scale(1.05);
}

.product-page-error {
    font-size: 1.2rem;
    color: #3E4095;
    text-align: center;
    font-weight: bold;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Show All Products Button Styles */
.show-all-container {
    text-align: center;
    padding: 20px 0;
    margin: 30px auto;
    width: 100%;
}

.show-all-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: #3E4095;
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin: 5px;
}

.show-all-btn:hover {
    background-color: #2d2f6e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(62, 64, 149, 0.3);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.search-header {
    background-color: #f8f8f8;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    z-index: 900;
}

.search-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-form input[type="text"] {
    width: 300px;
    padding: 10px; /* Increased padding for a modern look */
    border: 1px solid #ccc;
    border-radius: 15px; /* Rounded corners */
    margin-right: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease; /* Smooth transition for border color */
}

.search-form input[type="text"]:focus {
    border-color: #3E4095; /* Highlight border on focus */
    outline: none; /* Remove default outline */
}

.search-form button {
    padding: 10px 20px; /* Increased padding for a modern look */
    background-color: #3E4095;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 20px; /* Rounded corners */
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition for background color and transform */
}

.search-form button:hover {
    background-color: #2d2f6e;
    transform: translateY(-2px); /* Slight lift on hover */
}

/* Modern Filter Styles */
.product-filter-container {
    margin: 20px 0;
    position: relative;
    max-width: 1500px;
    width: 100%;
}

.modern-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff;
    border: 2px solid #3E4095;
    border-radius: 30px;
    color: #3E4095;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-filter-btn:hover {
    background: #3E4095;
    color: white;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.modern-filter-options {
    display: none;
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    margin-top: 10px;
    border: 1px solid #e0e0e0;
}

.filter-option {
    display: block;
    position: relative;
    padding: 12px 16px;
    margin: 8px 0;
    background: #f8f9fa;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.filter-option:hover {
    background: #e9ecef;
}

.filter-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Amazon-style Filter Layout */
.filter-layout-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
}

.filter-sidebar {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 60px;
}

.filter-section {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-header {
    font-size: 1.1rem;
    color: #0F1111;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.filter-link {
    display: block;
    padding: 8px 15px;
    color: #555;
    text-decoration: none;
    border-radius: 15px;
    margin: 2px 0;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.filter-link:hover {
    background: #F7FAFC;
    color: #0F1111;
    text-decoration: underline;
}

.filter-main-content {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Mobile Filter Button */
.mobile-filter-btn {
    display: none;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: #3E4095;
    color: white;
    border: none;
    border-radius: 15px;
    margin: 10px 0;
    font-weight: 500;
    cursor: pointer;
}

@media (max-width: 768px) {
    .filter-layout-container {
        grid-template-columns: 1fr;
        position: relative;
    }

    .filter-sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        height: 100vh;
        z-index: 1000;
        padding: 20px;
        box-shadow: 4px 0 15px rgba(0,0,0,0.2);
        overflow-y: auto;
        animation: slideIn 0.3s ease-out;
    }

    .filter-sidebar.active {
        display: block;
    }

    .mobile-filter-btn {
        display: flex;
    }

    .filter-main-content {
        grid-column: 1;
        padding: 15px;
    }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Close Button Styles */
.close-filter-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #3E4095;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 1001;
    transition: background 0.3s ease, transform 0.3s ease;
    display: none; /* Hidden by default */
    position: absolute;
}

.close-filter-btn:hover {
    background: #2d2f6e;
    transform: rotate(90deg) scale(1.1);
}

@media (max-width: 768px) {
    .close-filter-btn {
        display: block;
    }
    .filter-sidebar {
        padding-top: 50px; /* Add space for close button */
    }
}

@media (max-width: 768px) {
    /* Unified text sizing */
    .product h3,
    .category-title,
    .filter-header,
    .product-page-title {
        font-size: 0.9rem;
    }

    .product-page-item span,
    .filter-link,
    .filter-option {
        font-size: 0.85rem;
    }

    /* Grid adjustments for 2 columns */
    .products-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 4px;
        padding: 0;
    }

    .product {
        padding: 4px;
        margin: 0;
        box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05);
    }

    .product .product-price {
        font-size: 0.9rem;
        margin: 4px 0;
    }

    /* Form elements density */
    .search-form input[type="text"] {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    /* Filter sidebar spacing */
    .filter-sidebar {
        padding: 10px;
    }

    .filter-section {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    
    .search-form input[type="text"] {
        width: 100%;
        max-width: unset;
        margin-right: 0;
    }

    /* Consistent container padding */
    .centered-content,
    .product-page-container {
        padding: 4px;
    }
    
    /* Remove padding from filter main content */
    .filter-main-content {
        margin: 0;
        width: 100%;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
    }
    
    .filter-main-content .products-grid {
        padding: 0;
        gap: 4px;
    }

    /* Button adjustments */
    .mobile-filter-btn,
    .filter-apply-btn {
        padding: 8px 10px;
        font-size: 0.9rem;
        margin: 4px 0;
    }
    
    /* Fix product visual image in mobile view */
    .product-visual-section {
        padding: 8px;
        margin-top: 10px;
        border-radius: 15px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }
    
    .product-visual-container {
        padding: 5px;
    }
    
    .product-visual-image {
        max-height: 180px;
        max-width: 100%;
        object-fit: contain;
        width: auto;
    }
    
    /* Fix product detail image overflow */
    .product-detail-image {
        max-height: 180px;
        object-fit: contain;
        width: auto;
        max-width: 100%;
    }
    
    /* Ensure product page image container is properly sized */
    .product-page-image {
        padding: 5px;
        min-height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/* Show More Button Styles */
.show-more-container {
    text-align: center;
    padding: 20px 0;
    margin: 20px auto;
    width: 100%;
}

#loadMoreBtn {
    display: inline-block;
    padding: 12px 35px;
    background-color: #3E4095;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

#loadMoreBtn:hover {
    background-color: #2d2f6e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(62, 64, 149, 0.3);
}

#loadMoreBtn:disabled {
    background-color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Animation for new products */
.product {
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Product Visual Section Styles */
.product-visual-section {
    margin-top: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.visual-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.product-visual-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 15px;
}

.product-visual-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.product-visual-image:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .product-visual-section {
        padding: 15px;
        margin-top: 20px;
    }
    
    .visual-section-title {
        font-size: 1.3rem;
    }
}
/* Blog Post Styles */
.blog-post {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.blog-breadcrumb {
    margin-bottom: 2rem;
    color: #666;
}

.blog-breadcrumb a {
    color: #3E4095;
    text-decoration: none;
}

.blog-post-header {
    margin-bottom: 2rem;
}

.blog-post-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #333;
    margin-bottom: 1rem;
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    color: #666;
    font-size: 0.9rem;
}

.blog-post-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-content {
    line-height: 1.8;
    color: #333;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.blog-post-tags {
    margin: 2rem 0;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #f5f5f5;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
}

.post-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.prev-post, .next-post {
    color: #3E4095;
    text-decoration: none;
    transition: color 0.3s;
}

.prev-post:hover, .next-post:hover {
    color: #2d2f6e;
}
.read-more {
    color: #3E4095;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #3E4095;
}

@media (max-width: 768px) {
    .blog-post {
        margin: 1rem auto;
    }
    
    .blog-post-meta {
        gap: 0.5rem;
    }
    
    .post-nav {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.recent-posts-sidebar {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 30px;
}

.recent-posts-sidebar h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.recent-posts-list {
    list-style: none;
    padding: 0;
}

.recent-posts-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.recent-posts-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-posts-list a {
    color: #3E4095;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.recent-posts-list a:hover {
    color: #ad1c1e;
}

.post-date {
    font-size: 0.8rem;
    color: #999;
}

@media (max-width: 768px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .recent-posts-sidebar {
        margin-top: 30px;
    }
}

/* Franchise Page Styles */
.franchise-section {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1rem;
}
.franchise-areas{
    margin-bottom: 1rem;
}

.franchise-intro {
    text-align: justify;
    margin: 2rem 0;
    line-height: 1.6;
}

.franchise-content h2 {
    color: #3E4095;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin: 1.5rem 0 1rem;
}

.franchise-content p {
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-categories {
    margin: 2rem 0;
}

.product-categories h2 {
    color: #3E4095;
    text-align: center;
    margin-bottom: 1.5rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.category-item {
    text-decoration: none;
    color: inherit;
    display: block;
    background: linear-gradient(to right, rgba(62, 64, 149, 0.05), rgba(62, 64, 149, 0.1));
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 3px solid #3E4095;
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(62, 64, 149, 0.15);
    color: #3E4095;
}

@media (max-width: 768px) {
    .franchise-section {
        padding: 0.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .franchise-form {
        padding: 1.5rem;
    }
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-top: 4px solid #3E4095;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    color: #3E4095;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.area-item {
    background: linear-gradient(to right, rgba(62, 64, 149, 0.05), rgba(62, 64, 149, 0.1));
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 3px solid #3E4095;
    transition: all 0.3s ease;
}

.area-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(62, 64, 149, 0.15);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 2rem;
}

.feature-item::before {
    content: "•";
    color: #3E4095;
    position: absolute;
    left: 0.8rem;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .benefits-grid,
    .areas-grid,
    .features-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-card,
    .feature-item {
        padding: 1.5rem;
    }
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 5px;
      }
}

.contact-redirect-btn {
    display: inline-block;
    background: #3E4095;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.contact-redirect-btn:hover {
    background: #2d2f6e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(62, 64, 149, 0.3);
}

.franchise-contact {
    text-align: center;
    padding: 3rem 0;
}

.franchise-contact p {
    max-width: 600px;
    margin: 1rem auto;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
}

.section-header {
    margin-bottom: 1rem;
    text-align: left;
}

.view-all-products {
    text-align: right;
    margin: 1rem 0;
}

.all-products-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: transparent;
    color: #3E4095;
    border: 2px solid #3E4095;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.all-products-btn:hover {
    background-color: #3E4095;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(62, 64, 149, 0.15);
}

@media (max-width: 768px) {
    .products-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
    }
    
    .view-all-products {
        text-align: left;
    }
}

/* Product Range Section Styles */
.product-range-section {
    margin: 0.5rem 0;
    padding: 0.5rem 0;
}

.product-range-section h2 {
    text-align: center;
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.product-range-section h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #3E4095;
    border-radius: 2px;
}

.product-range-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.range-card {
    background: #fff;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #3E4095;
    display: flex;
    flex-direction: column;
}

.range-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(62, 64, 149, 0.05);
}

.range-card h3 {
    color: #3E4095;
    font-size: 1.4rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.range-card p {
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.range-link {
    display: inline-block;
    color: #3E4095;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    margin-bottom: 5px;
}

.range-link:hover {
    color: #2d2f6e;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .product-range-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .range-card {
        padding: 1.5rem;
    }

    .range-card h3 {
        font-size: 1.2rem;
    }

    .product-range-section h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
}

.range-image {
    width: 100%;
    height: 170px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.range-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.range-card:hover .range-image img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .range-image {
        height: 170px;
    }
}

.range-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

/* Range Detail Page Styles */
.range-detail-section {
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem;
}

.range-header {
    text-align: center;
    margin-bottom: 3rem;
}

.range-banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.range-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.range-header h1 {
    color: #333;
    font-size: 2.5rem;
    margin: 0.5rem 0;
    position: relative;
}

.range-header h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #3E4095;
}

.range-description,
.range-features,
.range-products,
.range-contact {
    margin-bottom: 3rem;
}

.range-features ul {
    list-style: none;
    padding: 0;
}

.range-features li {
    padding: 1rem;
    margin: 0.5rem 0;
    background: linear-gradient(to right, rgba(62, 64, 149, 0.05), rgba(62, 64, 149, 0.1));
    border-left: 3px solid #3E4095;
    border-radius: 8px;
}

.view-all-btn,
.contact-btn {
    display: inline-block;
    background: #3E4095;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.view-all-btn:hover,
.contact-btn:hover {
    background: #2d2f6e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(62, 64, 149, 0.3);
}

.range-contact {
    text-align: center;
    padding: 3rem;
    background: #f8f8f8;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .range-banner {
        height: 200px;
    }
    
    .range-header h1 {
        font-size: 1rem;
    }
    
    .range-detail-section {
        padding: 1rem;
    }
}

.pcd-franchise-section {
    padding: 2rem 2rem;
    background: #f8f9fa;
    margin: 1rem 0;
    border-radius: 15px;
}

.pcd-content {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.pcd-text h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.pcd-text h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #3E4095;
}

.pcd-description p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #555;
}

.pcd-cta-btn {
    display: inline-block;
    background: #3E4095;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.pcd-cta-btn:hover {
    background: #2d2f6e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(62, 64, 149, 0.3);
}

.pcd-slider {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pcd-slide {
    display: none;
    width: 100%;
}

.pcd-slide.active {
    display: block;
}

.pcd-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.pcd-prev, .pcd-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.pcd-prev { left: 10px; }
.pcd-next { right: 10px; }

.pcd-prev:hover, .pcd-next:hover {
    background: rgba(255, 255, 255, 0.8);
}

.pcd-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.pcd-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pcd-dot.active {
    background: #fff;
}

@media (max-width: 768px) {
    .pcd-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pcd-text h2 {
        font-size: 1.6rem;
    }

    .pcd-slide img {
        height: 300px;
    }
}

.pcd-prev, .pcd-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.pcd-prev { left: 20px; }
.pcd-next { right: 20px; }

.pcd-prev:hover, .pcd-next:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.pcd-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.pcd-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.pcd-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pcd-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.company-strengths {
    padding: 2rem 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.strengths-container {
    max-width: 1500px;
    margin: 0 auto;
}

.strengths-container h2 {
    text-align: center;
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
}

.strengths-container h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #3E4095;
}

.intro-text {
    text-align: center;
    max-width: 1200px;
    margin: 2rem auto;
    line-height: 1.6;
    color: #555;
}

.strengths-content h3 {
    text-align: center;
    color: #444;
    margin: 2rem 0;
    font-size: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    color: #3E4095;
    min-width: 40px;
}

.benefit-item p {
    margin: 0;
    line-height: 1.5;
    color: #555;
}

@media (max-width: 768px) {
    .company-strengths {
        padding: 2rem 1rem;
    }

    .strengths-container h2 {
        font-size: 1.1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        padding: 1.5rem;
    }
    .product-range-section h2 {
        font-size: 1.3rem;
    }

    .range-card h3 {
        font-size: 1rem;
    }

    .welcome-container h1 {
        font-size: 1.4rem;
    }

    .welcome-text p {
        font-size: 0.9rem;
    }

    .product-page-title {
        font-size: 1.3rem;
    }

    .contact-page-title {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .range-card p {
        font-size: 0.9rem;
    }
}

.welcome-section {
    padding: 1rem 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.welcome-container {
    max-width: 1500px;
    margin: 0 auto;
}

.welcome-container h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.welcome-container h1:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #3E4095;
}

.welcome-content {
    margin-top: 2rem;
}

.welcome-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    font-size: 1.0rem;
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 2rem 1rem;
    }

    .welcome-container h1 {
        font-size: 1.1rem;
    }

    .welcome-text p {
        font-size: 0.8rem;
    }
}

.secondary-nav {
    background: #ffffff;
    padding: 5px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.secondary-nav-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-button {
    background: transparent;
    border: none;
    padding: 8px 20px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.nav-button:hover {
    color: #3E4095;
    background: rgba(62, 64, 149, 0.1);
}


@media (max-width: 768px) {
    .secondary-nav-container {
        gap: 5px;
    }
    
    .nav-button {
        padding: 2px 10px;
        font-size: 0.8rem;
    }
}

.company-profile-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.company-profile-table th, .company-profile-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.company-profile-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.mission-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2rem;
    color: #3E4095;
    margin-bottom: 10px;
}

.mission-card h3 {
    color: #333;
    margin-bottom: 5px;
}

.mission-card p {
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-card {
        padding: 5px;
    }
}

.quality-card {
    display: flex;
    gap: 40px;
    align-items: center;
}

.quality-content {
    flex: 1;
}

.quality-image {
    flex: 1;
    max-width: 500px;
}

.quality-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .quality-card {
        flex-direction: column;
    }
    
    .quality-image {
        order: -1;
        max-width: 100%;
    }
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.quality-policies {
    margin: 40px 0;
}

.policy-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.policy-item {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
}

.manufacturing-process {
    margin: 40px 0;
}

.manufacturing-process ul {
    margin: 15px 0;
    padding-left: 20px;
}

.manufacturing-process li {
    margin-bottom: 10px;
}

.why-choose-us {
    background: #f8f9fa;
    padding: 2rem 2rem;
    border-radius: 15px;
}

.why-choose-us h2 {
    text-align: center;
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.why-choose-us h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #3E4095;
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1500px;
    margin: 0 auto;
}

.why-choose-us-card {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-top: 4px solid #3E4095;
}

.why-choose-us-card:hover {
    transform: translateY(-5px);
}

.why-choose-us-card h3 {
    color: #3E4095;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-choose-us-card p {
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 2rem 1rem;
    }
    
    .why-choose-us h2 {
        font-size: 1.6rem;
    }
    
    .why-choose-us-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-us-card {
        padding: 1.5rem;
    }
}
@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .image-grid img {
        height: auto;
        max-width: 100%;
        margin-bottom: 15px;
    }
}

/* Marketing Support Section */
#markiting-support {
    max-width: 1500px;
    margin: 0 auto;
}

.marketing-tools {
    margin: 30px 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.tool-item {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 0.95rem;
}

.marketing-contact {
    margin-top: 30px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
}

.marketing-contact p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.marketing-contact a {
    color: #007bff;
    text-decoration: none;
}

.marketing-contact a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tool-item {
        padding: 10px;
        font-size: 0.9rem;
    }
}

#govt-supply {
    max-width: 1500px;
    margin: 0 auto;
}

#govt-supply ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

#govt-supply li {
    margin-bottom: 10px;
    line-height: 1.6;
}

#govt-supply strong {
    color: #2c3e50;
}

#promotional-photos {
    display: flex;
    flex-direction: column-reverse; /* Default to column-reverse for mobile view */
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.promo-text-section {
    max-width: 100%; /* Full width for mobile view */
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.enquiry-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #3E4095;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.enquiry-btn:hover {
    background-color: #2d2f6e;
}

@media (min-width: 769px) {
    #promotional-photos {
        flex-direction: row; /* Row layout for desktop view */
    }

    .promo-text-section {
        max-width: 30%; /* Limited width for desktop view */
    }
}

.products-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.products-track {
    display: flex;
    width: calc(10 * 250px); /* Assuming each product is 250px wide */
    animation: scrollProducts 20s linear infinite;
}

.product {
    flex: 0 0 250px; /* Fixed width for each product */
    margin: 0 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 10px;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-title {
    font-size: 1rem;
    color: #333;
    margin: 10px 0;
}

.product-description {
    font-size: 0.9rem;
    color: #555;
}

.details-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #3E4095;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.details-btn:hover {
    background-color: #2d2f6e;
}

@keyframes scrollProducts {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.products-container {
    position: relative;
    width: 100%;
    padding: 0px 0;
    margin: 0px 0;
}

.products-track:hover {
    animation-play-state: paused;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    min-width: 200px;
    z-index: 1000;
    padding: 8px 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    display: block;
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    padding: 8px 16px;
    display: block;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
    color: #3E4095;
}

/* Update dropdown styles for mobile */
@media (max-width: 1080px) {
    .dropdown-menu {
        position: static;
        display: none;
        background: #f5f5f5;
        box-shadow: none;
        width: 100%;
        padding: 10px 0;
        height: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown-menu.active {
        display: block;
    }

    .dropdown-menu li {
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-menu li a {
        padding: 12px 30px;
        font-size: 14px;
        color: #333;
        display: block;
        width: 100%;
    }

    nav ul li.dropdown {
        width: 100%;
    }

    .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 12px 20px;
    }

    .dropdown > a:after {
        content: '▼';
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .dropdown.active > a:after {
        transform: rotate(180deg);
    }
}

/* Bottom Navigation Bar */
.bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(250, 252, 255, 0.9);
    padding: 15px 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 15px;
    display: block;
}

.bottom-nav-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bottom-nav-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    padding: 8px;
    transition: transform 0.3s ease;
    gap: 10px;
}

.bottom-nav-btn i {
    font-size: 1.5rem;
    color: #3E4095;
}

@media (max-width: 1080px) {
    .bottom-nav {
        width: 100%;
        bottom: 0;
        left: 0;
        border-radius: 0;
        padding: 5px 0;  /* Reduced from 10px to 5px */
    }
    
    .bottom-nav-container {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .bottom-nav-btn {
        flex-direction: column;
        font-size: 0.7rem;  /* Reduced from 0.8rem */
        padding: 10px;  /* Reduced from 8px */
    }
    
    .bottom-nav-btn i {
        font-size: 1.2rem;  /* Reduced from 1.5rem */
        margin-bottom: 2px;  /* Reduced from 4px */
    }
    
    main {
        padding-bottom: 45px;  /* Reduced from 70px */
    }
}

.career-container {
    display: flex;
}

.career-content {
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.career-content h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.career-text {
    line-height: 1.6;
}

.career-text p {
    margin-bottom: 15px;
}

.career-text a {
    color: #3E4095;
    text-decoration: none;
}

.career-text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .career-container {
        flex-direction: column;
    }
}

.career-btn {
    display: inline-block;
    background: #f0f5ff;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    align-items: center;
}

.career-btn:hover {
    background: #a9b9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(62, 64, 149, 0.3);
}

.product-price {
    color: #3E4095;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .product-price {
        font-size: 0.95rem;
        margin-top: 5px;
    }
}

.nav-icon {
    width: 20px;
    height: 20px;
    filter: invert(0); /* Makes the SVG white */
    color : "red";
}

@media (max-width: 768px) {
    .nav-icon {
        width: 24px;
        height: 24px;
    }
}

/* Update Product Range Section Layout */
.product-range-section {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}
/* 
.product-range-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
} */

/* Contact Form Styles */
.contact-form-container {
    position: sticky;
    top: 10px;
    height: fit-content;
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(62, 64, 149, 0.3);
    border-top: 4px solid #3E4095;
}

.contact-form-container h3 {
    color: #333;
    font-size: 1.5rem;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.contact-form-container h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3E4095;
    border-radius: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    margin-left: 4px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3E4095;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(62, 64, 149, 0.1);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 50px;
}

.submit-btn {
    background: #3E4095;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: #2d2f6e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(62, 64, 149, 0.3);
}

/* Update responsive styles */
@media (max-width: 768px) {
    .product-range-section {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .contact-form-container {
        position: static;
        margin: 20px auto;
        max-width: 600px;
        order: -1;
    }

    .product-range-content {
        order: 2;
    }
}

.form-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-message.success {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

.form-message.error {
    background: #ffebee;
    border-left: 4px solid #f44336;
    color: #c62828;
}

.form-message i {
    font-size: 20px;
}


@media (max-width: 768px) {
    .contact-form-container {
        padding: 25px 20px;
        margin: 15px;
        border-radius: 15px;
    }

    .contact-form-container h3 {
        font-size: 1.3rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
    }

    .submit-btn {
        padding: 12px;
    }
}

.thank-you-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    padding: 50px 20px;
    text-align: center;
}

.thank-you-container h1 {
    color: #3E4095;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.thank-you-container p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .thank-you-container {
        min-height: calc(100vh - 150px);
        padding: 30px 15px;
    }
    
    .thank-you-container h1 {
        font-size: 2rem;
    }
    
    .thank-you-container p {
        font-size: 1rem;
    }
}