/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* Header Styles */
.header-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);







    z-index: 1000;
    transition: all 0.3s ease;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Navbar Customizations */
.navbar {
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 80px;
    transition: height 0.3s ease;
}

.header-scrolled .logo {
    height: 50px;
}

.brand-text {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    transition: font-size 0.3s ease;
}

.header-scrolled .brand-text {
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 15px 25px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link i {
    font-size: 1.2rem;
    margin-right: 10px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #ffeb3b;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 10px;
    left: 50%;
    background: #ffeb3b;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 50%;
}

.navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        height: calc(100vh - 100px);
        background: rgba(75, 0, 130, 0.95);
        padding: 20px;
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .navbar-nav .nav-link {
        font-size: 1.8rem;
        padding: 20px;
        color: #fff;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }
}

main {
    padding-top: 100px; /* Adjusted for fixed header */
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero.jpg') no-repeat center center/cover;
    color: #fff;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
}

.btn-primary {
    background: #ff4500;
    border: none;
    padding: 12px 30px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background: #e03e00;
    transform: scale(1.05);
}

/* Animation Styling */
[data-animation] {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animation="fadeInUp"] {
    transform: translateY(40px);
}

[data-animation="slideInFromLeft"] {
    transform: translateX(-50px);
}

[data-animation="slideInFromRight"] {
    transform: translateX(50px);
}

.animate__animated {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Services Section */
#services {
    position: relative;
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

#services::before,
#services::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

#services::before {
    width: 400px;
    height: 400px;
    background: #4b0082;
    top: -100px;
    left: -100px;
}

#services::after {
    width: 300px;
    height: 300px;
    background: #ff4500;
    bottom: -80px;
    right: -80px;
}

#services h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    position: relative;
    z-index: 1;
}

.service-card {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 15px;
    border: 2px solid #f1f1f1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card i {
    color: #ff4500;
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-card p {
    font-size: 1rem;
    color: #555;
}

#services .btn-outline-primary {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

#services .btn-outline-primary:hover {
    background-color: #4b0082;
    color: #fff;
    border-color: #4b0082;
}

/* About Section */
#about {
    background: linear-gradient(135deg, #f9f9f9, #e0ecff);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

#about .about-image img {
    border-radius: 20px;
    max-height: 100%;
    object-fit: cover;
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

.shape1 {
    width: 300px;
    height: 300px;
    background: #4b0082;
    top: -50px;
    left: -80px;
}

.shape2 {
    width: 250px;
    height: 250px;
    background: #ff4500;
    bottom: -60px;
    right: -60px;
}

.about-text h2 {
    font-size: 2.8rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.about-text .btn-primary {
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
}

.about-text .btn-primary:hover {
    background-color: #4b0082;
    border-color: #4b0082;
}

/* News Section */
#news {
    background: linear-gradient(to bottom right, #f3f4f7, #ffffff);
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

#news h2 {
    font-size: 2.8rem;
    color: #2c3e50;
}

.news-card {
    background: #ffffff;
    border-radius: 20px;
    transition: transform 0.3s ease;
    z-index: 2;
}

.news-card:hover {
    transform: translateY(-8px);
}

.news-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.news-card h5 {
    font-size: 1.25rem;
    color: #333333;
}

.news-card p {
    font-size: 0.95rem;
    color: #555;
}

/* Products Section */
#products {
    background: linear-gradient(to bottom right, #e7f0ff, #ffffff);
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

#products h2 {
    font-size: 2.8rem;
    color: #1c1c1c;
}

.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.product-card h4 {
    font-size: 1.4rem;
    color: #2c3e50;
}

.product-card p {
    font-size: 1rem;
    color: #555;
}

#products .btn-outline-primary {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#products .btn-outline-primary:hover {
    background-color: #4b0082;
    color: #fff;
    border-color: #4b0082;
}

/* Contact Section */
.contact-section-custom {
    background: linear-gradient(135deg, #4b0082, #ff4500);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-section-custom::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(30deg);
    z-index: 0;
}

.contact-section-custom .container {
    position: relative;
    z-index: 1;
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.footer-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.footer-dev {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #d3e0f7;
}

.dev-link {
    color: #ffeb3b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

.dev-link:hover {
    color: #fff;
    transform: scale(1.05);
}

.footer-shape {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    z-index: -1;
    animation: shapePulse 15s infinite ease-in-out;
}

@keyframes shapePulse {
    0% { transform: rotate(45deg) scale(1); }
    50% { transform: rotate(45deg) scale(1.1); }
    100% { transform: rotate(45deg) scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .service-card, .news-card, .product-card {
        margin-bottom: 20px;
    }

    .about-image, .about-text {
        text-align: center;
    }

    .footer-section {
        padding: 30px 0;
    }

    .footer-text {
        font-size: 1rem;
    }

    .footer-dev {
        font-size: 0.8rem;
    }
}



/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1e3c72, #ff4500); /* Deep blue to orange gradient */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh; /* Full viewport height */
    color: #fff;
}

.contact-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

.contact-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

/* Contact Info Card */
.contact-card {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
    border-radius: 15px;
    backdrop-filter: blur(5px); /* Glassmorphism effect */
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-info h4 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: #ffeb3b; /* Yellow for headings */
}

.contact-info p {
    font-size: 1.2rem;
    margin: 0;
    color: #d3e0f7; /* Light blue text */
}

.contact-info i {
    color: #ff4500; /* Orange icons */
    transition: transform 0.3s ease;
}

.contact-info .d-flex:hover i {
    transform: scale(1.2);
}

/* Map Container */
.map-container {
    padding: 20px;
}

.map-wrapper {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.map-wrapper:hover {
    transform: scale(1.02);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Abstract Shape */
.contact-shape {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(30deg);
    z-index: -1;
    animation: shapePulse 12s infinite ease-in-out;
}

@keyframes shapePulse {
    0% { transform: rotate(30deg) scale(1); }
    50% { transform: rotate(30deg) scale(1.1); }
    100% { transform: rotate(30deg) scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section h1 {
        font-size: 2.5rem;
    }

    .contact-section h3 {
        font-size: 1.5rem;
    }

    .contact-info, .map-container {
        margin-bottom: 30px;
    }

    .contact-card {
        padding: 15px;
    }

    .contact-info h4 {
        font-size: 1.4rem;
    }

    .contact-info p {
        font-size: 1rem;
    }

    .map-wrapper iframe {
        height: 300px; /* Smaller map on mobile */
    }
}






/* Products Section */
.products-section {
    background: #f4f7fa; /* Light blue-gray background */
    padding: 80px 0;
}

.products-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    color: #1e3c72; /* Deep blue */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
}

/* Search Bar */
.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-container .input-group-text {
    background: #fff;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 25px 0 0 25px;
    padding: 10px 15px;
}

.search-container .form-control {
    border: 1px solid #ddd;
    border-left: none;
    border-radius: 0 25px 25px 0;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.search-container .form-control:focus {
    border-color: #00c4cc; /* Cyan */
    box-shadow: 0 0 10px rgba(0, 196, 204, 0.5);
    outline: none;
}

.search-container i {
    color: #1e3c72;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.product-info {
    padding: 20px;
    background: #fff;
}

.product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #2a5298; /* Slightly lighter blue */
    text-decoration: none;
    display: block;
    position: relative;
    transition: color 0.3s ease;
}

.product-title:hover {
    color: #00c4cc; /* Cyan on hover */
}

.product-title::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: #00c4cc;
    transition: width 0.3s ease, left 0.3s ease;
}

.product-title:hover::after {
    width: 50%;
    left: 25%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-section h1 {
        font-size: 2.5rem;
    }

    .search-container .form-control {
        font-size: 1rem;
    }

    .product-card {
        margin-bottom: 20px;
    }

    .product-image img {
        height: 200px;
    }

    .product-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .products-section {
        padding: 50px 0;
    }

    .search-container {
        max-width: 100%;
    }
}


/* Product Item */
.product-item {
    transition: opacity 0.3s ease;
}

.product-item.hidden {
    opacity: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Ensure animations work with search */
.animate__fadeIn {
    animation-duration: 0.5s;
}





#about-section.about-section-custom {
    background: linear-gradient(135deg, #f9fbfd, #e6f0fa);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-section-img {
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-section-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.about-section-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    color: #1e3c72;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.about-section-content .lead {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
}

.about-section-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: #2a5298;
    margin-top: 30px;
    position: relative;
}

.about-section-content h3::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #00c4cc;
    bottom: -10px;
    left: 0;
}

.about-section-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.about-value-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.about-value-list i {
    color: #00c4cc;
    font-size: 1.3rem;
}

.about-service-list {
    margin-top: 20px;
}

.about-service-list .col-6 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #444;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.about-service-list i {
    color: #1e3c72;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.about-service-list .col-6:hover i {
    color: #00c4cc;
}

.about-section-shape {
    position: absolute;
    top: -100px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 196, 204, 0.15), transparent);
    border-radius: 50%;
    z-index: 0;
    animation: float 8s infinite ease-in-out;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
    100% { transform: translateY(0); }
}

@media (max-width: 768px) {
    .about-section-content h1 {
        font-size: 2.2rem;
        text-align: center;
    }

    .about-section-content .lead {
        font-size: 1.1rem;
    }

    .about-section-content h3 {
        font-size: 1.4rem;
        text-align: center;
    }

    .about-section-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-section-image, .about-section-content {
        margin-bottom: 30px;
        text-align: center;
    }

    .about-service-list .col-6 {
        width: 100%;
        justify-content: center;
    }

    .about-section-shape {
        width: 200px;
        height: 200px;
        top: -50px;
        left: -50px;
    }
}




/* Category Page */