



body {
   
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* ===== Animated Background Shapes ===== */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #48dbfb, #0abde3);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #5f27cd, #341f97);
    border-radius: 50%;
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, #00d2d3, #54a0ff);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

.shape-5 {
    width: 220px;
    height: 220px;
    background: linear-gradient(45deg, #ff9ff3, #feca57);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 30%;
    right: 15%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(0, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
}

/* ===== Text Gradient ===== */
.text-gradient {
    background-color: #00DA6D;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Animation Classes ===== */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

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

.slide-up {
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
}

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

/* ===== Header Styles ===== */
header h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===== Navigation Cards ===== */
.nav-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 20px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.nav-card:hover::before {
    left: 100%;
}

.nav-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.nav-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #00DA6D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.nav-card:hover .nav-card-icon {
    transform: rotateY(360deg) scale(1.1);
   box-shadow: 0 6px 18px rgba(0, 218, 109, 0.4);

}

.nav-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.nav-card:hover .nav-card-title {
    color: rgb(255, 92, 0);
}

.nav-card-description {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 14px;
}

.nav-card-link {
    display: inline-block;
    color: #00DA6D;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-card-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgb(255, 92, 0);
    transition: width 0.3s ease;
}

.nav-card-link:hover::after {
    width: 100%;
}

.nav-card-link:hover {
    color: rgb(255, 92, 0);
    transform: translateX(5px);
}

/* ===== Section Header ===== */
.section-header {
    position: relative;
    padding-bottom: 5px;
}

/*.section-header::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    width: 100px;*/
/*    height: 4px;*/
/*    background: rgb(255, 92, 0);*/
/*    border-radius: 2px;*/
/*}*/

/* ===== Product Cards ===== */
.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:  0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.product-card:hover::before {
    opacity: 0.1;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.03);
 box-shadow: rgb(255, 92, 0);

    border-color: #00DA6D;
}

.product-title {
    font-size: 22px;
    font-weight: 700;
    color: #00DA6D;
    margin-bottom: 25px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.product-card:hover .product-title {
    color: #00DA6D;
    transform: scale(1.05);
}

.product-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #00DA6D;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    /*box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);*/
    position: relative;
    z-index: 1;
}

.product-link:hover {
    transform: translateY(-3px);
    box-shadow: rgb(255, 92, 0);
    color: #fff;
  background: linear-gradient(45deg, rgb(255, 92, 0), rgb(200, 60, 0));

}



/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav-card {
        padding: 30px 20px;
    }
    
    .nav-card-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .product-card {
        padding: 30px 25px;
        min-height: 160px;
    }
    
    .product-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    header h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .shape {
        display: none;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .product-card {
        padding: 25px 20px;
        min-height: 150px;
    }
    
    .product-title {
        font-size: 18px;
    }
}