* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: #333333;
}

.navbar {
    background: #0A192F;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 2;
    margin-right: auto;
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.logo-container:hover .logo-image {
    transform: scale(1.05);
}

.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
    gap: 2rem;
    margin-right: 100px;
}

.navbar-item {
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar-links {
    color: #FFFFFF;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0.5rem 0;
    height: 100%;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
}

.navbar-links::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #4169E1;
    transition: all 0.3s ease;
}

.navbar-links:hover {
    color: #1E3A8A;
}

.navbar-links:hover::after {
    width: 100%;
}

.navbar-toggle {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #FFFFFF;
    display: block;
}

/* Button Styles */
.btn {
    background-color: #4169E1;
    color: #FFFFFF;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

.btn:hover {
    background-color: #1E3A8A;
    transform: translateY(-2px);
}

/*------------------------------------*\
  #LINK STYLES
\*------------------------------------*/
a {
    color: #007BFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #1E3A8A;
}

@media screen and (max-width: 100%) {
    .navbar-container {
        padding: 0 1.5rem;
    }
    
    .navbar-menu {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 960px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
    }

    .navbar-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #0A192F;
        flex-direction: column;
        padding: 5rem 0 2rem;
        margin: 0;
        gap: 0.5rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    .navbar-menu.active {
        display: flex;
        right: 0;
    }

    .navbar-item {
        width: 100%;
        height: auto;
        padding: 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .navbar-menu.active .navbar-item {
        opacity: 1;
        transform: translateX(0);
    }

    .navbar-menu.active .navbar-item:nth-child(1) { transition-delay: 0.1s; }
    .navbar-menu.active .navbar-item:nth-child(2) { transition-delay: 0.15s; }
    .navbar-menu.active .navbar-item:nth-child(3) { transition-delay: 0.2s; }
    .navbar-menu.active .navbar-item:nth-child(4) { transition-delay: 0.25s; }
    .navbar-item:nth-child(5) { transition-delay: 0.3s; }

    .navbar-links {
        width: 100%;
        padding: 1rem 2rem;
        color: #FFFFFF;
        font-size: 1.1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }

    .navbar-links:hover {
        background: rgba(65, 105, 225, 0.1);
        color: #4169E1;
        border-left: 3px solid #4169E1;
    }

    /* Dropdown Styles for Mobile */
    .dropdown-menu {
        position: static;
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        padding: 0.5rem 0;
        margin: 0;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        transform: translateY(-10px);
    }

    .dropdown-menu.active {
        display: block;
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
    }

    .dropdown-item {
        width: 100%;
        position: relative;
    }

    .dropdown-link {
        padding: 0.8rem 3rem;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #FFFFFF;
        font-size: 1rem;
        transition: all 0.3s ease;
        position: relative;
        background: transparent;
        cursor: pointer;
    }

    .dropdown-link:hover {
        background: rgba(65, 105, 225, 0.1);
        color: #4169E1;
        padding-left: 3.5rem;
    }

    .dropdown-link i {
        transition: transform 0.5s ease;
        font-size: 0.9rem;
        opacity: 0.8;
    }

    .dropdown-item.active > .dropdown-link i {
        transform: rotate(-90deg);
        opacity: 1;
    }

    /* Sub Dropdown Styles */
    .sub-dropdown {
        position: static;
        width: 100%;
        background: rgba(255, 255, 255, 0.03);
        box-shadow: none;
        padding: 0.5rem 0;
        margin: 0;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        transform: translateY(-10px);
    }

    .sub-dropdown.active {
        display: block;
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
    }

    .sub-dropdown li {
        position: relative;
        overflow: hidden;
        animation: slideIn 0.3s ease forwards;
        animation-delay: calc(var(--i) * 0.1s);
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .sub-dropdown li a {
        padding: 0.8rem 4rem;
        width: 100%;
        display: block;
        color: #FFFFFF;
        font-size: 0.95rem;
        opacity: 0.9;
        transition: all 0.3s ease;
        position: relative;
    }

    .sub-dropdown li a::before {
        content: '';
        position: absolute;
        left: 3.5rem;
        top: 50%;
        width: 6px;
        height: 6px;
        background: #4169E1;
        border-radius: 50%;
        transform: translateY(-50%) scale(0);
        transition: all 0.3s ease;
    }

    .sub-dropdown li a:hover {
        background: rgba(65, 105, 225, 0.1);
        color: #4169E1;
        opacity: 1;
    }

    .sub-dropdown li a:hover::before {
        transform: translateY(-50%) scale(1);
    }

    /* Active State Indicators */
    .dropdown-item.active > .dropdown-link {
        background: rgba(65, 105, 225, 0.1);
        color: #4169E1;
        border-left: 3px solid #4169E1;
    }

    .sub-dropdown li.active > a {
        background: rgba(65, 105, 225, 0.1);
        color: #4169E1;
        opacity: 1;
    }

    .sub-dropdown li.active > a::before {
        transform: translateY(-50%) scale(1);
    }

    /* Mobile Responsive Adjustments */
    @media screen and (max-width: 480px) {
        .dropdown-menu {
            padding: 0.4rem 0;
        }

        .sub-dropdown {
            padding: 0.4rem 0;
        }

        .dropdown-link {
            padding: 0.8rem 2.5rem;
            font-size: 0.95rem;
        }

        .sub-dropdown li a {
            padding: 0.8rem 3.5rem;
            font-size: 0.9rem;
        }

        .sub-dropdown li a::before {
            left: 3rem;
        }
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        height: 70px;
    }

    .navbar-container {
        height: 70px;
        padding: 0 0.75rem;
    }

    .navbar-menu {
        top: 0;
        height: 100vh;
    }

    .logo-image {
        height: 35px;
    }
}

@media screen and (max-width: 480px) {
    .navbar-container {
        padding: 0 0.75rem;
    }

    .navbar-menu {
        width: 280px;
    }

    .logo-image {
        height: 30px;
    }

    .navbar-links {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .dropdown-link {
        padding: 0.8rem 2.5rem;
    }

    .sub-dropdown li a {
        padding: 0.8rem 3.5rem;
    }
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0A192F;
    min-width: 220px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    z-index: 1000;
    border-radius: 6px;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown Items */
.dropdown-item {
    position: relative;
    margin: 0;
    list-style: none;
}

.dropdown-link {
    color: #FFFFFF;
    padding: 0.6rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.9rem;
    border-left: 2px solid transparent;
}

.dropdown-link:hover {
    background: rgba(65, 105, 225, 0.08);
    color: #4169E1;
    border-left: 2px solid #4169E1;
    padding-left: 1.5rem;
}

/* Dropdown Icons */
.dropdown-link i {
    margin-right: 0.5rem;
    margin-left: 0;
    font-size: 0.75rem;
    transition: transform 0.2s ease;
    opacity: 0.8;
}

.dropdown-item:hover .dropdown-link i {
    transform: rotate(-90deg);
    opacity: 1;
}

/* Sub Dropdown */
.sub-dropdown {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: #0A192F;
    min-width: 200px;
    box-shadow: -2px 0 6px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    border-radius: 6px;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    margin-right: 8px;
}

.dropdown-item:hover .sub-dropdown {
    display: block;
    animation: slideIn 0.2s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-5px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sub-dropdown li {
    list-style: none;
    margin: 0;
}

.sub-dropdown li a {
    color: #FFFFFF;
    padding: 0.5rem 1.25rem;
    display: block;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    opacity: 0.9;
    position: relative;
}

.sub-dropdown li a::before {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 3px;
    height: 3px;
    background: #4169E1;
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    transition: all 0.2s ease;
}

.sub-dropdown li a:hover {
    background: rgba(65, 105, 225, 0.08);
    color: #4169E1;
    padding-right: 1.5rem;
    opacity: 1;
}

.sub-dropdown li a:hover::before {
    transform: translateY(-50%) scale(1);
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 960px) {
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
        padding: 0;
        margin: 0;
        border-radius: 0;
        width: 100%;
        min-width: auto;
    }

    .sub-dropdown {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.02);
        padding: 0;
        margin: 0;
        border-radius: 0;
        width: 100%;
        min-width: auto;
        margin-right: 0;
    }

    .dropdown-item {
        margin: 0;
        width: 100%;
    }

    .dropdown-link {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .sub-dropdown li a {
        padding: 0.7rem 2.5rem;
        font-size: 0.85rem;
    }
}

/*------------------------------------*\
  #RESPONSIVE STYLES
\*------------------------------------*/
/* Desktop Large */
@media screen and (max-width: 1200px) {
    .navbar-container {
        padding: 0 2rem;
    }
    
    .logo-container {
        left: 2rem;
    }
    
    .navbar-menu {
        gap: 1.75rem;
        margin-right: 50px;
    }
}

/* Tablet and Mobile */
@media screen and (max-width: 960px) {
    /* Mobile Navigation */
    .navbar-container {
        padding: 0 1rem;
    }

    .logo-container {
        position: relative;
        left: 0;
    }

    .navbar-toggle {
        display: block;
        position: relative;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Mobile Menu */
    .navbar-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #0A192F;
        flex-direction: column;
        height: auto;
        padding: 1rem 0;
        margin: 0;
        gap: 0;
        transform: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu.active {
        display: flex;
    }

    /* Mobile Menu Items */
    .navbar-item {
        height: 60px;
        width: 100%;
        justify-content: center;
    }

    .navbar-links {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        padding: 0;
        margin: 0;
        border-radius: 0;
        width: 100%;
        min-width: auto;
    }

    .sub-dropdown {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        padding: 0;
        margin: 0;
        border-radius: 0;
        width: 100%;
        min-width: auto;
    }

    .dropdown-item {
        margin: 0;
        width: 100%;
    }

    .dropdown-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .sub-dropdown li a {
        padding: 0.6rem 1.75rem;
        font-size: 0.85rem;
        opacity: 0.9;
    }

    /* Mobile Menu Scrollbar */
    .navbar-menu {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .navbar-menu::-webkit-scrollbar {
        width: 4px;
    }

    .navbar-menu::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
    }

    .navbar-menu::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 2px;
    }

    .navbar-menu::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    /* Mobile Toggle Animation */
    .navbar-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .navbar-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Mobile Small */
@media screen and (max-width: 768px) {
    .logo-image {
        height: 30px;
    }
}

/*------------------------------------*\
  #HERO SECTION
\*------------------------------------*/
.hero {
    background: linear-gradient(135deg, #0A192F 0%, #1C1C1C 100%);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/grid-pattern.png') repeat;
    opacity: 0.1;
    animation: backgroundMove 20s linear infinite;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #E5E7EB;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.btn-primary {
    background: #4169E1;
    color: #FFFFFF;
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #4169E1;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(65, 105, 225, 0.3);
}

.hero-image {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRight 0.8s ease 0.6s forwards;
}

/* Image Slider Styles */
.image-slider {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.8s ease;
}

.slide-image.active {
    opacity: 1;
    transform: scale(1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #4169E1;
    transform: scale(1.2);
}

.light-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

.particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #4169E1;
    border-radius: 50%;
    box-shadow: 0 0 10px #4169E1, 0 0 20px #4169E1, 0 0 40px #4169E1;
    animation: particleFloat 15s linear infinite;
}

.particles span:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.particles span:nth-child(2) { top: 60%; left: 80%; animation-delay: -3s; }
.particles span:nth-child(3) { top: 40%; left: 40%; animation-delay: -6s; }
.particles span:nth-child(4) { top: 80%; left: 60%; animation-delay: -9s; }
.particles span:nth-child(5) { top: 30%; left: 70%; animation-delay: -12s; }
.particles span:nth-child(6) { top: 70%; left: 30%; animation-delay: -15s; }

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

@keyframes backgroundMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

/* Hero Responsive Styles */
@media screen and (max-width: 1200px) {
    .hero-container {
        padding: 3rem;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 500px;
    }

    .image-slider {
        height: 280px;
    }
}

@media screen and (max-width: 960px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .hero-content {
        order: 2;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.8s ease forwards;
    }

    .hero-image {
        order: 1;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        opacity: 0;
        transform: translateX(20px);
        animation: fadeInRight 0.8s ease 0.6s forwards;
    }

    .image-slider {
        width: 100%;
        height: 300px;
        margin: 0 auto;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        position: relative;
    }

    .slide-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transform: scale(1.1);
        transition: all 0.8s ease;
    }

    .slide-image.active {
        opacity: 1;
        transform: scale(1);
    }

    .light-effect {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120%;
        height: 120%;
        background: radial-gradient(circle, rgba(65, 105, 225, 0.2) 0%, transparent 70%);
        animation: pulse 4s ease-in-out infinite;
        z-index: 2;
        pointer-events: none;
    }

    .particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 2;
    }

    .particles span {
        position: absolute;
        width: 4px;
        height: 4px;
        background: #4169E1;
        border-radius: 50%;
        box-shadow: 0 0 10px #4169E1, 0 0 20px #4169E1, 0 0 40px #4169E1;
        animation: particleFloat 15s linear infinite;
    }

    .particles span:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
    .particles span:nth-child(2) { top: 60%; left: 80%; animation-delay: -3s; }
    .particles span:nth-child(3) { top: 40%; left: 40%; animation-delay: -6s; }
    .particles span:nth-child(4) { top: 80%; left: 60%; animation-delay: -9s; }
    .particles span:nth-child(5) { top: 30%; left: 70%; animation-delay: -12s; }
    .particles span:nth-child(6) { top: 70%; left: 30%; animation-delay: -15s; }

    .hero-title {
        font-size: 2.4rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Slider Dots */
    .slider-dots {
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 2;
    }

    .dot {
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        background: #4169E1;
        transform: scale(1.2);
    }
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .image-slider {
        height: 250px;
    }
}

/*------------------------------------*\
  #FEATURED CATEGORIES SECTION
\*------------------------------------*/
.featured-categories {
    padding: 4rem 2rem;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.featured-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/grid-pattern.png') repeat;
    opacity: 0.05;
    animation: backgroundMove 20s linear infinite;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4169E1, #1E3A8A);
    border-radius: 2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(65, 105, 225, 0.1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(30, 58, 138, 0.2);
    border-color: rgba(30, 58, 138, 0.3);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .card-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .image-overlay {
    opacity: 1;
}

.card-content {
    padding: 1.75rem;
    background: transparent;
}

.card-content h3 {
    font-size: 1.35rem;
    margin: 0 0 1rem;
    color: #333333;
    font-weight: 600;
}

.card-content p {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: #4169E1;
    background: transparent;
    border: 2px solid #4169E1;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-outline:hover {
    background: #4169E1;
    color: #FFFFFF;
    transform: translateX(5px);
}

.btn-outline i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.btn-outline:hover i {
    transform: translateX(3px);
}

/* View All Products Card */
.view-all-card {
    background: linear-gradient(135deg, #4169E1 0%, #1E3A8A 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.view-all-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(30, 58, 138, 0.3);
}

.view-all-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.view-all-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.view-all-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.view-all-card .btn-outline {
    color: #fff;
    border-color: #fff;
}

.view-all-card .btn-outline:hover {
    background: #fff;
    color: #4169E1;
}

@media (max-width: 768px) {
    .featured-categories {
        padding: 3rem 1rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .card-image {
        height: 200px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-content h3 {
        font-size: 1.25rem;
    }
    
    .card-content p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .btn-outline {
        padding: 0.6rem 1.25rem;
        font-size: 0.95rem;
    }
}

/*------------------------------------*\
  #WHY CHOOSE US SECTION
\*------------------------------------*/
.why-choose-us {
    padding: 3rem 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/grid-pattern.png') repeat;
    opacity: 0.05;
    animation: backgroundMove 20s linear infinite;
}

.why-choose-us .section-title {
    color: #333333;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.why-choose-us .section-title::after {
    background: linear-gradient(90deg, #4169E1, #1E3A8A);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(65, 105, 225, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #4169E1;
}

.feature-card h3 {
    color: #333333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-card p {
    color: #333333;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 2.5rem 0;
    }

    .features-grid {
        gap: 1rem;
    }

    .feature-card {
        padding: 1.25rem 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }

    .feature-icon i {
        font-size: 1.3rem;
    }

    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .why-choose-us {
        padding: 2rem 0;
    }

    .why-choose-us .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .feature-icon i {
        font-size: 1.2rem;
    }
}

/*------------------------------------*\
  #ABOUT US SECTION
\*------------------------------------*/
.about-us {
    padding: 6rem 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.about-us .section-title {
    color: #333333;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.about-us .section-title::after {
    background: linear-gradient(90deg, #4169E1, #1E3A8A);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    max-width: 600px;
}

.about-description {
    color: #333333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid #4169E1;
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #FFFFFF;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(65, 105, 225, 0.1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4169E1, #1E3A8A);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
    border-color: rgba(30, 58, 138, 0.3);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: #4169E1;
    margin-bottom: 0.75rem;
    line-height: 1;
    background: linear-gradient(135deg, #4169E1, #1E3A8A);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: #333333;
    font-size: 1rem;
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.2), rgba(0, 180, 216, 0.2));
    opacity: 0;
    transition: all 0.3s ease;
}

.about-image:hover::before {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .about-content {
        gap: 4rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 960px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        max-width: 100%;
        text-align: center;
    }

    .about-description {
        padding-left: 0;
        border-left: none;
        border-bottom: 3px solid #4169E1;
        padding-bottom: 1.5rem;
    }

    .about-stats {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-image {
        max-width: 600px;
        margin: 0 auto;
        transform: none;
    }

    .about-image:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 4rem 0;
    }

    .features-grid {
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
    }

    .feature-icon i {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}

/*------------------------------------*\
  #APPLICATIONS SECTION
\*------------------------------------*/
.applications {
    padding: 6rem 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.applications .section-title {
    color: #333333;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.applications .section-title::after {
    background: linear-gradient(90deg, #4169E1, #1E3A8A);
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.application-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(65, 105, 225, 0.1);
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
    border-color: rgba(30, 58, 138, 0.3);
}

.application-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4169E1, #1E3A8A);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.application-card:hover::before {
    transform: scaleX(1);
}

.application-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.application-card:hover img {
    transform: scale(1.1);
}

.application-content {
    padding: 2rem;
    background: #FFFFFF;
}

.application-card h3 {
    color: #333333;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.application-card:hover h3 {
    color: #1E3A8A;
}

.application-card p {
    color: #333333;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1200px) {
    .about-content {
        gap: 4rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 960px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        max-width: 100%;
        text-align: center;
    }

    .about-description {
        padding-left: 0;
        border-left: none;
        border-bottom: 3px solid #4169E1;
        padding-bottom: 1.5rem;
    }

    .about-stats {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-image {
        max-width: 600px;
        margin: 0 auto;
        transform: none;
    }

    .about-image:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .about-us,
    .applications {
        padding: 4rem 0;
    }

    .features-grid {
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .application-card img {
        height: 180px;
    }

    .application-content {
        padding: 1.5rem;
    }
}

/*------------------------------------*\
  #CONTACT SECTION
\*------------------------------------*/
.contact {
    padding: 6rem 0;
    background: #FFFFFF;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: #333333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info p {
    color: #333333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: #F0F7FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007BFF;
    margin-right: 1rem;
}

.contact-item span {
    color: #333333;
    font-size: 1rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background: #25D366;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-button i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.whatsapp-button:hover {
    background: #128C7E;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.contact-form {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    font-size: 1rem;
    color: #333333;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1E3A8A;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .about-content,
    .contact-container {
        gap: 3rem;
    }
}

@media screen and (max-width: 960px) {
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-text {
        max-width: 100%;
        text-align: center;
    }

    .about-stats {
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-info {
        text-align: center;
    }

    .contact-details {
        max-width: 400px;
        margin: 0 auto 2rem;
    }

    .whatsapp-button {
        margin: 0 auto;
        display: flex;
        max-width: fit-content;
    }
}

@media screen and (max-width: 768px) {
    .why-choose-us,
    .about-us,
    .applications,
    .contact {
        padding: 4rem 0;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .application-card img {
        height: 180px;
    }
}

@media screen and (max-width: 480px) {
    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Footer Styles */
.footer {
    background: #0A192F;
    color: #fff;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0) 100%
    );
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.footer-section {
    position: relative;
    padding-right: 3rem;
}

.footer-section:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0) 100%
    );
}

.footer-section h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #4169E1, #1E3A8A);
    border-radius: 2px;
}

.footer-section p {
    color: #E5E7EB;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    padding: 0.5rem 0;
    width: fit-content;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transition: all 0.3s ease;
    color: #007BFF;
    font-size: 1.1em;
}

.footer-links a:hover {
    color: #1E3A8A;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #E5E7EB;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #FFFFFF;
    transform: translateX(5px);
}

.contact-item i {
    color: #007BFF;
    font-size: 1.2rem;
    background: rgba(0, 123, 255, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: #1E3A8A;
    color: #fff;
}

.contact-item span {
    color: #E5E7EB;
    font-size: 1rem;
    line-height: 1.5;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 1rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-button i {
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0) 100%
    );
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2.5rem;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #1E3A8A, #1E3A8A);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #1E3A8A;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-section {
        padding-right: 0;
    }

    .footer-section::after {
        display: none;
    }

    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-links a {
        font-size: 0.95rem;
        padding: 0.4rem 0;
    }
}

.indiamart-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.indiamart-section p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.indiamart-link {
    display: inline-block;
    transition: all 0.3s ease;
}

.indiamart-link:hover {
    transform: translateY(-2px);
}

.indiamart-logo {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.indiamart-link:hover .indiamart-logo {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(30, 58, 138, 0.3));
}

@media (max-width: 768px) {
    .indiamart-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
        text-align: center;
    }

    .indiamart-logo {
        height: 32px;
    }
}

/* Product Hero Section */
.product-hero {
    background: linear-gradient(135deg, #0A192F 0%, #1C1C1C 100%);
    padding: 4rem 0;
    text-align: center;
    color: #FFFFFF;
}

.product-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Product Categories Section */
.product-categories {
    padding: 4rem 0;
    background: #FFFFFF;
}

.product-categories:nth-child(even) {
    background: #F8FAFC;
}

.product-categories h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333333;
    position: relative;
    padding-bottom: 1rem;
}

.product-categories h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4169E1, #1E3A8A);
    border-radius: 2px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Product Item */
.product-item {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(65, 105, 225, 0.1);
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(30, 58, 138, 0.2);
    border-color: rgba(30, 58, 138, 0.3);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 1.75rem;
    background: transparent;
}

.product-content h3 {
    font-size: 1.35rem;
    margin: 0 0 1rem;
    color: #333333;
    font-weight: 600;
}

.product-content p {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-specs {
    margin-bottom: 1.5rem;
}

.product-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.product-specs li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #333333;
    font-size: 0.95rem;
}

.product-specs i {
    color: #4169E1;
    font-size: 1.1rem;
}

.product-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4169E1;
}

.btn-product {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: #4169E1;
    background: transparent;
    border: 2px solid #4169E1;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-product:hover {
    background: #4169E1;
    color: #FFFFFF;
    transform: translateX(5px);
}

.btn-product i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.btn-product:hover i {
    transform: translateX(3px);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .product-hero {
        padding: 3rem 0;
    }

    .product-hero h1 {
        font-size: 2.2rem;
    }

    .product-hero p {
        font-size: 1.1rem;
    }

    .product-categories {
        padding: 3rem 0;
    }

    .product-categories h2 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 960px) {
    .product-hero {
        padding: 2.5rem 0;
    }

    .product-hero h1 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .product-image {
        height: 200px;
    }

    .product-content {
        padding: 1.5rem;
    }

    .product-content h3 {
        font-size: 1.25rem;
    }

    .product-content p {
        font-size: 0.95rem;
    }

    .product-specs li {
        font-size: 0.9rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .btn-product {
        padding: 0.6rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 768px) {
    .product-hero h1 {
        font-size: 1.8rem;
    }

    .product-hero p {
        font-size: 1rem;
    }

    .product-categories h2 {
        font-size: 1.6rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}
