:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --dark-bg: #1a1a1a;
    --hoynoza-red: #d93d3d;
    --hoynoza-blue: #2ab7ca;
    --hoynoza-orange: #f2a61d;
    --hoynoza-green: #4ecdc4;
    --font-outfit: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-outfit);
    color: #333;
    overflow-x: hidden;
}

/* Navbar */
#mainNav {
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

#mainNav.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.navbar-brand .brand-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.3s;
}

#mainNav.scrolled .brand-text {
    color: var(--dark-bg);
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 40px;
    }

    .navbar-brand .brand-text {
        font-size: 1.1rem;
    }
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: color 0.3s;
}

#mainNav.scrolled .nav-link {
    color: var(--dark-bg) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--hoynoza-orange);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* About Section */
#about {
    background: linear-gradient(135deg, #ffffff 0%, #f0faff 100%);
    position: relative;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--hoynoza-orange);
    color: #fff;
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(242, 166, 29, 0.4);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Products Section */
#products {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.platform-header {
    background: #FF5A5F;
    border-radius: 50px;
    padding: 10px 30px;
    display: inline-flex !important;
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 90, 95, 0.3);
}

.platform-icon-box {
    background: #333;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    position: relative;
    border: 3px solid #fff;
}

.platform-title {
    font-weight: 700;
    font-size: 1.8rem;
}

.products-list {
    position: relative;
    padding-left: 20px;
}

.product-item {
    position: relative;
    transition: all 0.3s ease;
}

.product-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    width: 60px;
    text-align: center;
    border-bottom: 3px solid #66BB6A;
    /* Light green underline */
    padding-bottom: 5px;
    margin-right: 30px;
}

.product-details {
    padding-bottom: 5px;
}

.product-text {
    font-weight: 600;
    font-size: 1.1rem;
    color: #444;
}

.product-icon {
    width: 50px;
    height: 50px;
    background: #001F3F;
    /* Deep navy */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.product-item:hover .product-icon {
    transform: rotate(360deg) scale(1.1);
    background: #FF5A5F;
}

.circle-image-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px;
}

.circle-product-img {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.circle-border {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
}


/* Team Cards */
.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 991.98px) {
    .col-lg-2-4 {
        width: 33.33%;
    }
}

@media (max-width: 767.98px) {
    .col-lg-2-4 {
        width: 100%;
    }
}

.team-card {
    background: #fff;
    border-radius: 100px 100px 20px 20px;
    padding: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-img-box {
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 1/1;
}

.team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-img-box img {
    transform: scale(1.1);
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #ffffff 0%, #f6f9fc 100%);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.bg-orange {
    background-color: var(--hoynoza-orange);
}

.contact-item {
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-images-grid {
    position: relative;
    z-index: 2;
}

.accent-box-dark {
    position: absolute;
    top: -40px;
    right: -100px;
    width: 400px;
    height: 100%;
    background: var(--dark-bg);
    z-index: 1;
}

@media (max-width: 991px) {
    .accent-box-dark {
        display: none;
    }
}

/* Custom Buttons */
.btn-primary {
    background-color: var(--hoynoza-orange);
    border-color: var(--hoynoza-orange);
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #d98f12;
    border-color: #d98f12;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(242, 166, 29, 0.3);
}

/* Responsive Utilities */
@media (max-width: 768px) {
    #mainNav {
        background: var(--dark-bg) !important;
        padding: 0.5rem 0 !important;
    }

    /* Fix Mobile Menu Icon */
    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5) !important;
        padding: 4px 8px;
    }

    .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%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    /* Products Mobile Fixes */
    .platform-header {
        padding: 6px 12px;
        border-radius: 20px;
        width: 100%;
        margin-bottom: 20px;
    }

    .platform-title {
        font-size: 1rem;
    }

    .platform-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 10px;
    }

    .product-number {
        font-size: 1.2rem;
        width: 40px;
        margin-right: 15px;
    }

    .product-text {
        font-size: 0.9rem;
    }

    .product-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .circle-product-img {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 1/1;
        margin-top: 30px;
    }

    .product-details {
        padding-left: 10px;
    }

    .product-text {
        line-height: 1.2;
    }

    /* Team & Contact Spacing */
    .team-card {
        margin-bottom: 20px;
    }

    .accent-box-dark {
        display: none;
    }

    .contact-item:hover {
        transform: none;
    }
}

/* Modern Footer Styles */
.footer-modern {
    background-color: #0d1117 !important;
    color: #e6edf3 !important;
    position: relative;
    overflow: hidden;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.2));
}

.footer-brand {
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.footer-col .col-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.footer-col .col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--hoynoza-orange);
}

.footer-links li {
    margin-bottom: 12px;
    list-style: none;
}

.footer-links a {
    color: #8b949e;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--hoynoza-orange);
    transform: translateX(5px);
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    margin-right: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--hoynoza-orange);
    color: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(242, 166, 29, 0.4);
}

.contact-compact p {
    line-height: 1.6;
    color: #8b949e !important;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom hr {
    border-color: rgba(255, 255, 255, 0.1) !important;
}