* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.hero {
    /* background: linear-gradient(135deg, #ffffff 0%, #b1c7de 100%); */
    padding: 80px 60px;
    min-height: 90vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: contain;
}
.hero ::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(0, 255, 238, 0.1) 0%,
        transparent 70%
    );
    animation: floatOrb 8s ease-in-out infinite;
    z-index: 0;
}
.hero-container {
    max-width: 700px;
    text-align: left;
    align-items: center;
    padding: 20px 40px;
}
.hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
}
.hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ece6e6;
    text-align: left;
}
.highlight {
    color: #14eaf5;
    display: inline-block;
    border-bottom: 8px solid #ac76e9f5;
}
.highlight ::after {
    position: relative;
    content: "";
    display: inline-block;
    width: 50px;
    height: 5px;
    background-color: #fa0d0d;
    margin-top: 5px;
}
button {
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 50%;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
    margin-top: 35px;
}
.hero-content p {
    font-size: 18px;
    color: #f0eaea;
    margin-bottom: 20px;
    text-align: flex-start;
}

.btn-demo,
.btn-more {
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.btn-demo {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 100%);
    color: white;
}


/* ====================================== PRODUCTS SECTION =============================================== */
.products-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}
.products-section h2 {
    text-align: center;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
    animation: slideInDown 0.8s ease;
}
.products-subtitle {
    text-align: center;
    font-size: clamp(16px, 2vw, 18px);
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
    animation: fadeIn 0.8s ease 0.2s both;
}
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.products-grid {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.product-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: zoomIn 0.6s ease both;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.product-card:nth-child(1) {
    animation-delay: 0s;
}
.product-card:nth-child(2) {
    animation-delay: 0.1s;
}
.product-card:nth-child(3) {
    animation-delay: 0.2s;
}
.product-card:nth-child(4) {
    animation-delay: 0.3s;
}
.product-card:nth-child(5) {
    animation-delay: 0.4s;
}
.product-card:nth-child(6) {
    animation-delay: 0.5s;
}
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00fff7, #1e90ff);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: translateX(0);
}
.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}
.product-card:nth-child(1) .product-icon {
    animation-delay: 0s;
}
.product-card:nth-child(2) .product-icon {
    animation-delay: 0.2s;
}
.product-card:nth-child(3) .product-icon {
    animation-delay: 0.4s;
}
.product-card:nth-child(4) .product-icon {
    animation-delay: 0.6s;
}
.product-card:nth-child(5) .product-icon {
    animation-delay: 0.8s;
}
.product-card:nth-child(6) .product-icon {
    animation-delay: 1s;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.product-title {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: rgb(8, 110, 235);
}
.product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-badge {
    display: inline;
    background: linear-gradient(135deg, #070707, #71cfef);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
/* ============ FEATURES SECTION ============ */
.features-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(160, 249, 247, 0.716) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: floatOrb 12s ease-in-out infinite;
}

.features-section h2 {
    text-align: center;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 60px;
    animation: slideInDown 0.8s ease;
    position: relative;
    z-index: 1;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: linear-gradient(
        135deg,
        rgba(71, 73, 53, 0.919) 0%,
        rgba(30, 143, 255, 0.615) 100%
    );
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: slideInUp 0.6s ease both;
    position: relative;
    overflow: hidden;
}

.feature-card:nth-child(1) {
    animation-delay: 0s;
}
.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}
.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}
.feature-card:nth-child(4) {
    animation-delay: 0.3s;
}
.feature-card:nth-child(5) {
    animation-delay: 0.4s;
}
.feature-card:nth-child(6) {
    animation-delay: 0.5s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(
        circle,
        rgba(160, 34, 244, 0.867) 0%,
        transparent 70%
    );
    border-radius: 50%;
    transition: all 0.4s ease;
}

.feature-card:hover::before {
    top: -30%;
    right: -30%;
    width: 250px;
    height: 250px;
}

.feature-card:hover {
    background: linear-gradient(
        135deg,
        rgba(204, 255, 0, 0.2) 0%,
        rgba(30, 144, 255, 0.2) 100%
    );
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-10px);
}

.feature-number {
    font-size: 36px;
    font-weight: 800;
    color: #0a65f9;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    position: relative;
    z-index: 1;
}

.feature-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
/* ============ CTA SECTION ============ */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffffd9 0%, #1e90ff 100%);
    text-align: center;
    color: rgb(3, 3, 3);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    animation: floatOrb 15s ease-in-out infinite;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: zoomIn 0.8s ease;
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content p {
    font-size: clamp(16px, 2vw, 18px);
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-white {
    background: white;
    color: #f72727;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
/* =====================================================responsive======================================== */
@media (max-width: 768px) {
    .hero {
        padding: 30px 10px;
        min-height: 70vh;
    }
    .hero-container {
        padding: 10px 20px;
    }
    .hero-content {
        padding: 42px 10px;
    }
    .hero-content h1 {
        font-size: 38px;
    }
    .hero-content p {
        margin-top: 20px;
        font-size: 16px;
        font-style: oblique;
        font-weight: 400;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin: 30px 0;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        /* align-items: center; */
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}
@media (max-width: 480px) {
    .products-section {
        padding: 60px 15px;
    }

    .products-grid {
        gap: 20px;
    }

    .product-card {
        padding: 20px;
    }

    .features-section {
        padding: 60px 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .cta-section {
        padding: 60px 15px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .logo-circle {
        max-width: 280px;
    }

    .logo-ibs {
        font-size: 48px;
    }
}