/* OxyCloud Universal Stylesheet */
/* Version: 2.0 */
/* Last Updated: 2026 */

/* ==================== CSS Variables ==================== */
:root {
    /* Primary Colors */
    --primary-color: #4F46E5;
    --secondary-color: #1E40AF;
    --accent-color: #F59E0B;

    /* Text Colors */
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --text-color: #475569;
    --dark-color: #1E293B;

    /* Background Colors */
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --light-color: #F8FAFC;

    /* Border Colors */
    --border-color: #E5E7EB;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4F46E5 0%, #1E40AF 100%);
    --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);

    /* Transitions & Animations */
    --transition-base: all 0.3s ease;

    /* Border Radius */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-full: 50px;
}

/* ==================== Global Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* ==================== Loader Styles ==================== */
#loader {
    position: fixed;
    inset: 0;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: #fff;
    font-family: "Poppins", sans-serif;
    transition: opacity 1s ease, visibility 1s ease;
}

.loader-content {
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.loader-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* ==================== Header Styles ==================== */
header,
.products-header {
    background: var(--gradient-primary);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before,
.products-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

header h1,
.products-header h1,
.products-header h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease-out;
}

header p,
.products-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

/* ==================== Navigation Styles ==================== */
nav {
    background: var(--bg-white);
    padding: 1rem 2rem;
    box-shadow: var(--shadow-md);
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
}

.navbar-expand-lg .navbar-nav {
    column-gap: 15px;
}

/* GRID MENU BASE STYLE */
.custom-grid-menu, .custom-grid-menu.show {
    display: none;
    /* Hidden by default */
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    background: #fff;
    padding: 15px !important;
    border: none !important;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    left: -525px;
    z-index: 999;
    width: 800px;
}

/* RESPONSIVE WIDTH */
@media (max-width: 992px) {
    .custom-grid-menu {
        position: static;
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
}
/* =============================================
   Solutions & Consulting GRID MENU STYLES
   ============================================= */

/* SHOW MENU */
/* Show the grid on hover (desktop) or when the 'show' class is added by Bootstrap (mobile) */
.nav-item.dropdown:hover .custom-grid-menu,
.nav-item.dropdown.show .custom-grid-menu {
    display: grid;
}

/* MENU ITEMS */
.custom-grid-menu .dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #495057;
    text-decoration: none;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.25s ease-in-out;
    border: 1px solid transparent; /* Prevents layout shift on hover */
}

/* ICONS */
.custom-grid-menu .dropdown-item i {
    font-size: 1.1em;
    width: 24px; /* Ensures all icons have the same width for alignment */
    text-align: center;
    margin-right: 12px;
    color: #06A3DA; /* Default icon color */
    transition: color 0.25s ease; /* Smooth color change on hover */
}

/* HOVER AND ACTIVE STATES */
.custom-grid-menu .dropdown-item:hover,
.custom-grid-menu .dropdown-item.active {
    background-color: #06A3DA;
    color: #fff;
    transform: translateY(-2px); /* Subtle lift effect */
    border-color: #06A3DA;
}

/* Change icon color on hover or when active */
.custom-grid-menu .dropdown-item:hover i,
.custom-grid-menu .dropdown-item.active i {
    color: #fff;
}


/* =============================================
   HORIZONTAL DROPDOWN MENU STYLES
   ============================================= */

/* --- Menu Container --- */
/* Hide by default, shown on hover/show */
.custom-horizontal-menu, .custom-horizontal-menu.show{
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    
    /* --- DESKTOP ALIGNMENT --- */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%; /* Position it right below the parent */
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Show the menu on hover (desktop) or when the 'show' class is added by Bootstrap (mobile) */
.nav-item.dropdown:hover .custom-horizontal-menu,
.nav-item.dropdown.show .custom-horizontal-menu {
    display: flex;
    opacity: 1;
    transform: translateX(-50%) translateY(0); /* Combine transforms */
}


/* =============================================
   BASE STYLES FOR CUSTOM MENUS
   ============================================= */
/* Common styles for both custom menus */
.custom-grid-menu, 
.custom-horizontal-menu {
    display: none; /* Hidden by default */
    background: #fff;
    padding: 15px !important;
    border: none !important;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

/* Grid Menu Specific Styles */
.custom-grid-menu {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    max-width: 90vw;
}

/* Horizontal Menu Specific Styles */
.custom-horizontal-menu {
    opacity: 0; /* Start transparent for fade-in effect */
    transform: translateX(-50%) translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
    left: 50%;
    top: 100%;
    padding: 20px;
    width: 600px;
    max-width: 90vw;
}

/* Menu Item Styling */
.custom-grid-menu .dropdown-item,
.custom-horizontal-menu .dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #495057;
    text-decoration: none;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.25s ease-in-out;
    border: 1px solid transparent;
}

/* Icon Styling */
.custom-grid-menu .dropdown-item i,
.custom-horizontal-menu .dropdown-item i {
    font-size: 1.1em;
    width: 24px;
    text-align: center;
    margin-right: 12px;
    color: #06A3DA;
    transition: color 0.25s ease;
}

/* Hover & Active States */
.custom-grid-menu .dropdown-item:hover,
.custom-grid-menu .dropdown-item.active,
.custom-horizontal-menu .dropdown-item:hover,
.custom-horizontal-menu .dropdown-item.active {
    background-color: #06A3DA;
    color: #fff;
    transform: translateY(-2px);
    border-color: #06A3DA;
}

.custom-grid-menu .dropdown-item:hover i,
.custom-grid-menu .dropdown-item.active i,
.custom-horizontal-menu .dropdown-item:hover i,
.custom-horizontal-menu .dropdown-item.active i {
    color: #fff;
}

/* =============================================
   DESKTOP STYLES (992px and above)
   ============================================= */
@media (min-width: 992px) {
    /* Show menus when Bootstrap adds .show class */
    .custom-grid-menu.show {
        display: grid !important;
    }

    .custom-horizontal-menu.show {
        display: flex !important;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    /* Hover behavior for desktop */
    .navbar-nav .dropdown:hover .custom-grid-menu {
        display: grid;
        opacity: 1;
    }

    .navbar-nav .dropdown:hover .custom-horizontal-menu {
        display: flex;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    /* Section & Title Styling for Horizontal Menu */
    .menu-section {
        padding: 0 15px;
        flex: 1;
    }

    .menu-title {
        font-size: 0.85rem;
        font-weight: 700;
        color: #333;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 0 0 10px 0;
        margin-bottom: 15px;
        border-bottom: 1px solid #e9ecef;
        pointer-events: none;
    }

    /* Visual Divider for Horizontal Menu */
    .menu-divider {
        width: 1px;
        height: 100%;
        background-color: #dee2e6;
        margin: 0 15px;
        align-self: stretch;
    }
}

/* =============================================
   MOBILE STYLES (Below 992px)
   ============================================= */
@media (max-width: 991.98px) {
    /* Common mobile overrides for both menus */
    .custom-grid-menu, .custom-horizontal-menu {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 10px 15px !important;
        opacity: 1 !important;
    }

    /* Grid Menu Mobile Overrides */
    .custom-grid-menu {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Horizontal Menu Mobile Overrides */
    .custom-horizontal-menu {
        flex-direction: column;
    }

    /* Menu Item Mobile Adjustments */
    .custom-grid-menu .dropdown-item,
    .custom-horizontal-menu .dropdown-item {
        padding: 10px;
        margin-bottom: 3px;
        width: 100%;
    }

    /* Visual Divider Mobile Adjustment */
    .menu-divider {
        width: 90%;
        height: 1px;
        margin: 10px auto;
    }

    /* Bootstrap dropdown mobile adjustments */
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }

    /* Navbar links mobile adjustment */
    .navbar-dark .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 15px;
    }
}

/* =============================================
   SMALL PHONES STYLES (Below 576px)
   ============================================= */
@media (max-width: 575.98px) {
    /* Single column for grid menu on small phones */
    .custom-grid-menu {
        grid-template-columns: 1fr;
    }
}

.oxy-animated {
  background: linear-gradient(90deg, #FF5722, #2196F3, #FF5722);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.1rem;
  display: inline-block;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}


/* Style for the vertical divider in the dropdown menu */
.menu-divider {
    border-left: 1px solid #dee2e6; /* Light gray color */
    height: auto;
    margin: 0 1rem;
}




/* ==================== Container and Section Styles ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* ==================== Card Styles ==================== */
.tool-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border-left: 4px solid var(--primary-color);
    opacity: 0;
    transform: translateY(20px);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.tool-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.tool-card h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.tool-card h2 i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.tool-card p {
    color: var(--text-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ==================== Hero Section ==================== */
.hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ==================== Features Grid ==================== */
.features-grid,
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ==================== Benefits Section ==================== */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

/* ==================== Details/Summary Styles ==================== */
details {
    margin-top: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

summary {
    font-weight: bold;
    cursor: pointer;
    padding: 1rem;
    background: var(--light-color);
    transition: var(--transition-base);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary:hover {
    background: #F3F4F6;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform 0.3s;
}

details[open] summary::after {
    transform: rotate(180deg);
}

details ul {
    padding: 1rem 1rem 1rem 2.5rem;
}

details li {
    margin-bottom: 0.5rem;
}

/* ==================== CTA Button Styles ==================== */
.cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    align-self: flex-start;
}

.cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* ==================== Back Link Styles ==================== */
.back-link {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
}

.back-link:hover {
    color: var(--secondary-color);
}

/* ==================== Testimonials Styles ==================== */
.testimonial {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

.testimonial.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* ==================== Category Section ==================== */
.category-section {
    margin-bottom: 60px;
}

.category-title {
    text-align: center;
    margin-bottom: 40px;
}

.category-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.category-title p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

/* ==================== Category Tabs ==================== */
.category-tabs {
    background-color: var(--bg-white);
    padding: 20px 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.category-tabs .nav-pills {
    justify-content: center;
}

.category-tabs .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: var(--border-radius-full);
    transition: var(--transition-base);
}

.category-tabs .nav-link:hover {
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
}

.category-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

/* ==================== Filter Buttons ==================== */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ==================== Search Bar ==================== */
.search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-full);
    font-size: 1rem;
    box-shadow: var(--shadow-md);
}

.search-container button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.search-container button:hover {
    background-color: var(--secondary-color);
}

/* ==================== CTA Section ==================== */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-section h2::after {
    background: white;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-section .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    margin: 0 10px;
    transition: var(--transition-base);
}

.cta-section .btn-light {
    background-color: white;
    color: var(--primary-color);
}

.cta-section .btn-outline-light {
    border-color: white;
    color: white;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ==================== Footer Styles ==================== */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 4rem;
}

.footer-top {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-tagline {
    color: #b8bcc8;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex-basis: 22%;
    margin-bottom: 20px;
}

.footer-section.products-section {
    flex-basis: 48%;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    border-radius: 2px;
}

.suite-description {
    color: #b8bcc8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-category {
    margin-bottom: 20px;
}

.product-category h4 {
    color: #0d6efd;
    font-size: 0.9rem;
    margin-top: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.product-category h4 i {
    margin-right: 8px;
    font-size: 0.8rem;
}

.footer-section p {
    color: #b8bcc8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #b8bcc8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.footer-section ul li a i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: #0d6efd;
}

.footer-section ul li a:hover {
    color: #0d6efd;
    transform: translateX(5px);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 10px;
    color: #0d6efd;
}

.product-list-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    justify-content: flex-start;
    padding: 15px 0;
}

.product-list-flex a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.25s ease-in-out;
}

.product-list-flex h3 {
    color: #ffffff;
    font-size: 2rem;
    transition: all 0.25s ease-in-out;
}

.product-list-flex a:hover {
    background-color: #06A3DA;
    color: #fff;
    border-color: #06A3DA;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid rgba(13, 110, 253, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #0d6efd;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p, .footer-bottom a {
    color: #b8bcc8;
    margin: 0;
}

.footer-link {
    color: #b8bcc8;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #0d6efd;
}

/* Responsive adjustments for footer */
@media (max-width: 992px) {
    .footer-section {
        flex-basis: 48%;
    }

    .footer-section.products-section {
        flex-basis: 100%;
    }

    .product-categories-container {
        flex-wrap: wrap;
    }

    .product-category-column {
        flex-basis: 48%;
    }
}

@media (max-width: 600px) {
    .footer-section,
    .product-category-column {
        flex-basis: 100%;
    }
    
    .footer-bottom .col-md-6 {
        text-align: center !important;
        margin-bottom: 10px;
    }
    
    .footer-link {
        margin: 0 10px;
    }
}

/* ==================== Slider Styles ==================== */
.products-header {
    position: relative;
    overflow: hidden;
    height: 20rem;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    color: white;
    text-align: center;
}

.slide.active {
    opacity: 1;
}

.slide-content-1, .slide-content-2, .slide-content-3 {
    padding: 0 20px;
}

.slide h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.slide p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: white;
}

/* Responsive adjustments for slider */
@media (max-width: 768px) {
    .slide h2 {
        font-size: 1.8rem;
    }
    
    .slide p {
        font-size: 1rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .prev {
        left: 10px;
    }
    
    .next {
        right: 10px;
    }
}

/* ==================== Logo Styles ==================== */
#logo-img {
    display: block;
    width: 10vw; /* 20% of viewport width */
    max-width: 250px; /* Maximum width on large screens */
    min-width: 120px; /* Minimum width on very small screens */
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

/* ==================== FAQ Section Styles ==================== */
#faq {
    margin-bottom: 4rem;
    position: relative;
    padding: 3rem 0;
}

#faq::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(79, 70, 229, 0.03)" stroke-width="1"/></svg>');
    z-index: -1;
}

#faq h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

#faq h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    cursor: pointer;
    position: relative;
    padding-right: 3rem;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::before {
    content: "\f059";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 1rem;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.faq-question::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
    background-color: rgba(79, 70, 229, 0.05);
}

.faq-item p {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active p {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

/* FAQ Category Headers */
.faq-category {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

/* FAQ Search */
.faq-search {
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-full);
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.faq-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.faq-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-search button:hover {
    background-color: var(--secondary-color);
}

/* FAQ No Results Message */
.faq-no-results {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-style: italic;
    display: none;
}

/* FAQ Show All Button */
.faq-show-all {
    text-align: center;
    margin-top: 2rem;
}

.faq-show-all button {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-show-all button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Responsive Styles for FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 1rem 1.2rem;
        padding-right: 2.5rem;
        font-size: 1rem;
    }

    .faq-item.active p {
        padding: 0 1.2rem 1.2rem;
    }

    #faq h2 {
        font-size: 1.8rem;
    }
}

/* ==================== Utility Classes ==================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.p-1 {
    padding: 0.5rem;
}

.p-2 {
    padding: 1rem;
}

.p-3 {
    padding: 1.5rem;
}

.p-4 {
    padding: 2rem;
}

.p-5 {
    padding: 3rem;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

/* ==================== Animations ==================== */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== Responsive Styles ==================== */
@media (max-width: 768px) {
    .products-header h1,
    .products-header h2 {
        font-size: 2rem;
    }

    .hero {
        flex-direction: column;
    }

    nav {
        flex-wrap: wrap;
    }

    nav a {
        margin: 0.5rem;
    }

    .features-grid,
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .category-tabs .nav-link {
        padding: 8px 15px;
        font-size: 0.9rem;
        margin: 0 2px;
    }

    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .tool-card,
    .feature-card,
    .testimonial {
        padding: 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        gap: 2rem;
    }
}