/* Animation Classes */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.form-group-focused .form-label {
    color: #3B4778;
    transition: all 0.3s ease;
}

.contact-item-hover {
    background-color: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
    padding-left: 1rem !important;
}

.map-animated {
    animation: mapSlideIn 0.8s ease-out;
}

.map-bounce {
    animation: mapBounce 0.6s ease-in-out;
}

.copy-tooltip {
    animation: tooltipFadeIn 0.3s ease-in;
}

@keyframes mapSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mapBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section Entrance Animation */
.contact-section {
    opacity: 0;
    animation: contactSectionFadeIn 1s ease-out forwards;
}

@keyframes contactSectionFadeIn {
    to {
        opacity: 1;
    }
}

.contact-form-wrapper,
.contact-details,
.map-container {
    opacity: 0;
    transform: translateY(30px);
    animation: contactElementSlideIn 0.8s ease-out forwards;
}

.contact-form-wrapper {
    animation-delay: 0.2s;
}

.map-container {
    animation-delay: 0.4s;
}

.contact-details {
    animation-delay: 0.6s;
}

@keyframes contactElementSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Input Glow Effect */
.form-control-lg:focus {
    animation: inputGlow 0.3s ease-in-out;
}

@keyframes inputGlow {
    0% {
        box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    }
    50% {
        box-shadow: 0 0 0 0.3rem rgba(102, 126, 234, 0.4);
    }
    100% {
        box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    }
}

/* Button Ripple Effect */
.btn-primary.btn-lg {
    position: relative;
    overflow: hidden;
}

.btn-primary.btn-lg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary.btn-lg:active::after {
    width: 300px;
    height: 300px;
}

/* Success/Error Alerts Animation */
.alert {
    animation: alertSlideDown 0.3s ease-out;
}

@keyframes alertSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Enhancements */
@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form-wrapper,
    .contact-details {
        padding: 1.5rem;
    }

    .contact-form-title {
        font-size: 1.2rem;
    }

    .form-control-lg {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .btn-primary.btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .contact-item {
        padding: 0.8rem 0;
    }

    .contact-item-title {
        font-size: 1.1rem;
    }

    .contact-item-content {
        font-size: 0.9rem;
    }
}

/* Accessibility Improvements */
.form-control:focus {
    outline: none;
}

.btn:focus {
    outline: 2px solid #3B4778;
    outline-offset: 2px;
}

.contact-item a:focus {
    outline: 2px solid #3B4778;
    outline-offset: 2px;
    border-radius: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .contact-form-wrapper,
    .contact-details,
    .map-container {
        border: 2px solid #000;
    }

    .form-control-lg {
        border-color: #000;
    }

    .btn-primary.btn-lg {
        background: #000;
        border-color: #000;
    }
}/* CSS - style.css */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation Styles */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: rgba(255,255,255,0.95) !important;
    position: fixed;
    z-index: 9999;
    width: 100%;
}

.navbar-brand h4 {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo-container {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
}


.navbar-nav .nav-link {
    margin: 0 0.5rem;
    color: #666 !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #3B4778 !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 2px;
    background-color: #3B4778;
}

.btn-outline-primary {
    border-width: 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #3B4778 0%, #764ba2 100%);
    background-image:
        linear-gradient(90deg, rgba(102, 126, 234, 0.8) 0%, transparent 70%),
        url('hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 112px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.05)"/><circle cx="70" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="50" r="2" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, rgba(57, 71, 121, 0) 0%, #3B4778 80.19%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-content a{
    font-weight: 400!important;
    color: #3B4778;
}
.hero-content a:hover{
    font-weight: 400!important;
    color: #3B4778!important;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-light {
    background-color: rgba(255,255,255,0.95);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    background-color: white;
}

/* Logo Animation */
.logo-container i {
    transition: all 0.3s ease;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .navbar-nav {
        margin-top: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 0;
    }

    .btn-outline-primary {
        margin-top: 1rem;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Products Section */
.products-section {
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.product-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    background: white;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.product-image-wrapper {
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.card-title {
    color: #333;
    font-size: 1.4rem;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary.btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* Blog Section */
.blog-section {
background: linear-gradient(77.73deg, #394779 2.34%, #7380B6 62.67%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="90" cy="80" r="2.5" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="90" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: blogFloat 25s linear infinite;
}

@keyframes blogFloat {
    0% { transform: translateX(0px) translateY(0px); }
    100% { transform: translateX(-100px) translateY(-100px); }
}


















.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.15);
    z-index: 1;
}

.blog-section .container {
    position: relative;
    z-index: 2;
}

.blog-section-title {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 3rem;
    line-height: 1.3;
    font-size: 32px;
}

.blog-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    transform: translateY(0);
}

.blog-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2) !important;
}

.blog-image-wrapper {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.blog-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-image-wrapper::before {
    opacity: 1;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image-wrapper img {
    transform: scale(1.1);
}

.blog-card-title {
    color: #333;
    font-size: 1.3rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: #3B4778;
}

.blog-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.8);
    color: #3B4778;
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}
.text-blue{
    color: #3B4778!important;
    text-decoration: none;
}
.product-detail{
    height: 660px!important;
}
img.blog-hero-background {
    position: absolute;
    width: 100%;
    z-index: -1;
}
.z-index-999{
    z-index: 999;
}
.btn-outline-light:hover {
    background: #3B4778;
    color: white;
    border-color: #3B4778;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}
a.text-primary.text-blue.text-decoration-none{
    color: #3B4778!important;
}
.about-detail p{
    font-weight: 300;
    margin-bottom: 10px;
}
.blog-content-section p{
    font-weight: 300;
    margin-bottom: 10px;
}
.blog-see-all {
    position: relative;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.blog-see-all::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    transition: width 0.3s ease;
}

.blog-see-all:hover::after {
    width: 100%;
}

.blog-see-all:hover {
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Blog cards animation on scroll */
.blog-card {
    opacity: 0;
    transform: translateY(50px);
    animation: blogFadeInUp 0.8s ease forwards;
}

.blog-card:nth-child(1) { animation-delay: 0.2s; }
.blog-card:nth-child(2) { animation-delay: 0.4s; }
.blog-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes blogFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Parallax effect for blog section */
.blog-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-title {
    font-size: 1.8rem;
    color: #333;
    line-height: 1.4;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.about-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 400px;
}

.about-image-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    z-index: 1;
}

.logo-design {
    position: relative;
    z-index: 2;
}

.logo-symbol {
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
}
.logo-symbol img{
    max-height: 400px;
    width: 100%;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.company-name h2 {
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.company-name p {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* Section spacing */
.section-title {
    position: relative;
    display: inline-block;
    font-size: 32px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3B4778 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Animation for product cards */
.product-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* See all link styling */
a.text-primary.fw-semibold.text-decoration-none{
    color: #3B4778!important;
}
a.btn.btn-outline-primary{
    border: 1px solid #3B4778;
    color: #3B4778;
}

a.btn.btn-outline-primary:hover{
    color: #fff;
    background: #3B4778;
}

a[href="#"]:not(.btn) {
    position: relative;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

a[href="#"]:not(.btn):hover {
    color: #764ba2 !important;
}

a[href="#"]:not(.btn):hover::after {
    width: 100%;
}


footer {
    background: #394779;
}

footer a {
    color: #fff;
    text-decoration: none;
}

.footer-logo-icon img{
    height: 60px;
}


.primary-color{
    color: #394779;
}
.primary-bg{
    background-color: #394779;
    color: #fff;
}
.btn.primary-bg:hover{
    background-color: #202d5a;
    color: #fff;
}
.text-contact{
    color: #6F6767;
}
.no-bg{
    background-color: none;
    background:none;
}

















  /* About Hero Section */
  .min-vh-30{
        min-height: 30vh!important;
  }
        .about-hero-section {
            background: url('about.jpg') center/cover no-repeat;
            background-image:
                linear-gradient(90deg, #7380B6 16.43%, rgba(115, 128, 182, 0) 100%),
                url('about.jpg');
            position: relative;
            overflow: hidden;
            min-height: 60vh;
            display: flex;
            align-items: center;
            padding-top: 112px;
        }

        .about-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.1);
            z-index: 1;
        }

        .about-hero-title {
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out;
        }

        /* Company Info Section */
        .company-info-section {
            background: white;
        }

        .company-text p {
            line-height: 1.8;
        }

        .company-image-wrapper img {
            transition: transform 0.3s ease;
            border-radius: 15px;
        }

        .company-image-wrapper:hover img {
            transform: scale(1.05);
        }

        /* Mission Section */
        .mission-section {
            background-color: #f8f9fa;
        }

        .mission-image-wrapper img {
            transition: transform 0.3s ease;
            border-radius: 15px;
        }

        .mission-image-wrapper:hover img {
            transform: scale(1.05);
        }

        /* Products Info Section */
        .products-info-section {
            background: white;
        }

        .products-list {
            list-style: none;
            padding: 0;
        }

        .products-list li {
            position: relative;
            padding-left: 2rem;
            line-height: 1.8;
        }

        .products-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #7380B6;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .products-info-image-wrapper img {
            transition: transform 0.3s ease;
            border-radius: 15px;
        }

        .products-info-image-wrapper:hover img {
            transform: scale(1.05);
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-hero-title {
                font-size: 2.5rem;
            }

            .product-detail{
                height: auto!important;
                min-height: auto!important;
            }

            .company-text p,
            .mission-content p {
                font-size: 1rem;
            }

            .products-list {
                font-size: 1rem;
            }

            .about-hero-section {
                min-height: 40vh;
            }
        }

        @media (max-width: 576px) {
            .about-hero-title {
                font-size: 2rem;
            }
        }












        /* Products Page Specific Styles */
        .products-hero-section {
            background: linear-gradient(135deg, #3B4778 0%, #764ba2 100%);
            background-image:
                linear-gradient(90deg, #7380B6 16.43%, rgba(115, 128, 182, 0) 100%),
                url('product.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            min-height: 50vh;
            display: flex;
            align-items: center;
            padding-top: 112px;
        }

        .products-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.1);
            z-index: 1;
        }

        .products-hero-title {
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out;
        }

        .category-sidebar {
            border-radius: 15px;
            padding: 2rem;
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        .category-item {
            display: flex;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid #f0f0f0;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #666;
            text-decoration: none;
        }

        .category-item:last-child {
            border-bottom: none;
        }

        .category-item:hover,
        .category-item.active {
            color: #394779;
            padding-left: 1rem;
            background-color: rgba(115, 128, 182, 0.05);
            border-radius: 10px;
        }

        .category-icon {
            width: 12px;
            height: 12px;
            border: 2px solid #ccc;
            margin-right: 1rem;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .category-item:hover .category-icon,
        .category-item.active .category-icon {
            background-color: #394779;
            border-color: #394779;
        }

        .search-box {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .search-input {
            border: 2px solid #f0f0f0;
            border-radius: 10px;
            padding: 1rem 1rem 1rem 3rem;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            border-color: #394779;
            box-shadow: 0 0 0 0.2rem rgba(57, 71, 121, 0.25);
        }

        .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            pointer-events: none;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }

















/* Məhsul kartları üçün bottom glass overlay effect */
.product-card-new {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 300px;
}

.product-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.product-image-new {
    height: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card-new:hover .product-image-new img {
    transform: scale(1.05);
}

/* Bottom Glass Overlay - sadəcə aşağı hissədə */
.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0 0 20px 20px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.product-card-new:hover .product-overlay {
    opacity: 1;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    height: 50%;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Glass overlay məzmunu */
.product-overlay .product-title {
    color: #333;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    line-height: 1.3;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.product-card-new:hover .product-overlay .product-title {
    opacity: 1;
    transform: translateY(0);
}

.product-overlay .product-category {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.2s;
}

.product-card-new:hover .product-overlay .product-category {
    opacity: 1;
    transform: translateY(0);
}

.product-overlay .product-details-btn {
    background: linear-gradient(135deg, #394779 0%, #7380B6 100%);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(57, 71, 121, 0.3);
    opacity: 0;
    transform: translateY(20px);
}

.product-card-new:hover .product-overlay .product-details-btn {
    opacity: 1;
    transform: translateY(0);
}

.product-overlay .product-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 71, 121, 0.4);
    background: linear-gradient(135deg, #7380B6 0%, #394779 100%);
    color: white;
    text-decoration: none;
}

/* Gizli məlumat hissəsi */
.product-info {
    display: none !important;
}

/* Glass effect üçün əlavə detallar */
.product-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    padding-top: -10px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

/* Responsive design */
@media (max-width: 768px) {
    .product-card-new {
        height: 250px;
    }

    .product-card-new:hover .product-overlay {
        height: 50%;
        padding: 1rem;
    }

    .product-overlay .product-title {
        font-size: 1.1rem;
    }

    .product-overlay .product-category {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .product-overlay .product-details-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .product-card-new {
        height: 220px;
    }

    .product-card-new:hover .product-overlay {
        height: 55%;
        padding: 0.8rem;
    }

    .product-overlay .product-title {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .product-overlay .product-category {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
}




















































        /* Special styling for Nexen product hover */
        .nexen-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 60px rgba(115, 128, 182, 0.2);
        }

        .nexen-card:hover .product-overlay {
            background: linear-gradient(45deg, rgba(115, 128, 182, 0.15) 0%, rgba(57, 71, 121, 0.15) 100%);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .category-sidebar {
                position: static;
                margin-bottom: 2rem;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 1.5rem;
            }

            .product-info {
                padding: 1rem;
            }
        }




   /* Blog Hero Section */
        .blog-hero-section {
            /*   background: url('blog.jpg') center/cover no-repeat;
               background-image:
                   linear-gradient(90deg, #7380B6 16.43%, rgba(115, 128, 182, 0) 100%),
                   url('blog.jpg');
            */
               position: relative;
               overflow: hidden;
               min-height: 60vh;
               display: flex;
               align-items: center;
               padding-top: 112px;
           }


           /*
           .blog-hero-overlay {
               position: absolute;
               top: 0;
               left: 0;
               right: 0;
               bottom: 0;
               background: rgba(0,0,0,0.1);
               z-index: 1;
           }
            */

        .blog-hero-title {
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out;
        }

        /* Blog Content Section */

        .blog-intro-text {
            padding: 2rem;
            margin-bottom: 2rem;
        }

        /* Search Box */

        .blog-search-input {
            border: 2px solid #E3E2E2;
            border-radius: 25px;
            padding: 1rem 1rem 1rem 3rem;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: none;
        }

        .blog-search-input:focus {
            border-color: #394779;
            box-shadow: 0 0 0 0.2rem rgba(57, 71, 121, 0.25);
        }

        .search-icon-blog {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            pointer-events: none;
        }

        /* Blog Post Cards */
        .blog-post-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid #D9D9D9;
            transition: all 0.3s ease;
        }

        .blog-post-card:hover {
            transform: translateY(-5px);
        }

        .blog-post-image {
            height: 150px;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 1rem;
        }

        .blog-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-post-card:hover .blog-post-image img {
            transform: scale(1.1);
        }

        .blog-post-title {
            color: #333;
            font-size: 1.3rem;
            line-height: 1.4;
        }

        .blog-post-subtitle {
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Pagination */
        .pagination .page-link {
            border: none;
            color: #394779;
            background: white;
            border-radius: 8px;
            margin: 0 0.25rem;
            padding: 0.6rem 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .pagination .page-item.active .page-link {
            background: #394779;
            color: white;
        }

        .pagination .page-link:hover {
            background: #f8f9fa;
            color: #394779;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .blog-hero-title {
                font-size: 2.5rem;
            }

            .blog-post-card {
                padding: 1.5rem;
            }

            .blog-post-title {
                font-size: 1.1rem;
            }

            .blog-intro-text {
                padding: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .blog-hero-title {
                font-size: 2rem;
            }

            .blog-post-image {
                height: 200px;
                margin-bottom: 1.5rem;
            }
        }



















/* Companies Carousel Section */
.companies-section {
    position: relative;
    overflow: hidden;
}

.companies-carousel-wrapper {
    position: relative;
    padding: 2rem 0;
}

/* Swiper Container */
.companiesSwiper {
    width: 100%;
    height: auto;
    padding: 2rem 0 3rem 0;
}

.companiesSwiper .swiper-wrapper {
    align-items: center;
}

/* Company Item */
.company-item {
    background: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.company-item:hover {
    transform: translateY(-10px);
}

.company-item:hover::before {
    opacity: 1;
}

/* Company Link */
.company-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.company-link:hover {
    color: inherit;
    text-decoration: none;
}

/* Company Logo Container */
.company-logo-container {
    width: 100px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.company-logo {
    max-width: 100%;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.company-item:hover .company-logo {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Logo Placeholder */
.company-logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #dee2e6;
}

.company-logo-placeholder i {
    font-size: 2rem;
    color: #6c757d;
    transition: color 0.3s ease;
}

.company-item:hover .company-logo-placeholder i {
    color: #394779;
}

/* Company Name */
.company-name {
    position: relative;
    z-index: 2;
}

.company-name h5 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.company-item:hover .company-name h5 {
    color: #394779;
}

/* Swiper Navigation */
.companies-next,
.companies-prev {
    width: 50px !important;
    margin-top: -30px !important;
    color: #394779 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}



.companies-next::after,
.companies-prev::after {
    display: none !important;
}

.companies-next {
    right: -10px !important;
}

.companies-prev {
    left: -10px !important;
}

/* Swiper Pagination */
.companies-pagination {
    bottom: 0 !important;
    position: relative !important;
    margin-top: 2rem !important;
}

.companies-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #dee2e6 !important;
    border-radius: 50% !important;
    margin: 0 6px !important;
    transition: all 0.3s ease !important;
}

.companies-pagination .swiper-pagination-bullet-active {
    background: #394779 !important;
    transform: scale(1.2) !important;
    box-shadow: 0 2px 8px rgba(57, 71, 121, 0.3) !important;
}

/* Loading Animation */
.company-item {
    opacity: 0;
    animation: companyFadeInUp 0.6s ease forwards;
}

@keyframes companyFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .company-item {
        height: 200px;
        padding: 1.5rem;
    }

    .company-logo-container {
        width: 90px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .companies-section {
        padding: 3rem 0;
    }

    .company-item {
        height: 180px;
        padding: 1.2rem;
        margin: 0 0.5rem;
    }

    .company-logo-container {
        width: 80px;
        height: 60px;
        margin-bottom: 0.8rem;
    }

    .company-name h5 {
        font-size: 1rem;
    }

    .companies-next,
    .companies-prev {
        width: 40px !important;
        height: 40px !important;
        margin-top: -20px !important;
        font-size: 0.9rem !important;
    }

    .companies-next {
        right: 5px !important;
    }

    .companies-prev {
        left: 5px !important;
    }
}

@media (max-width: 576px) {
    .company-item {
        height: 160px;
        padding: 1rem;
    }

    .company-logo-container {
        width: 70px;
        height: 50px;
        margin-bottom: 0.6rem;
    }

    .company-name h5 {
        font-size: 0.9rem;
    }

    .companies-pagination {
        margin-top: 1.5rem !important;
    }
}

