/* Modern Hero Styling */
.hero-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../banner1 (1).jpg') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(161, 100, 0, 0.9) 0%, rgba(102, 126, 234, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.search-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.search-input {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 15px;
    padding: 18px 25px;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.search-btn {
    background: linear-gradient(45deg, #A16400, #d4a574);
    border: none;
    border-radius: 15px;
    padding: 18px 30px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(161, 100, 0, 0.3);
    background: linear-gradient(45deg, #d4a574, #A16400);
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    min-width: 150px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #A16400;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        min-width: auto;
    }
}

/* Enhanced card styling */
.feature-card-modern {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #A16400, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.section-subtitle-modern {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.core-features-sec {
    position: relative;
}

.core-features-sec .section-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
}
.core-sec-left .section-header span {
    color: #A16400;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
    display: inline-block;
}
.core-sec-left .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}
.core-sec-left .section-header h2 span {
    color: #667eea;
}
.core-sec-left .section-header p {
    margin-bottom: 0;
}
.new-features {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}
.new-features:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.new-features .features-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.new-features .features-content p {
    margin-bottom: 0;
    color: #6c757d;
}
.updated-tag {
    background-color: #28a745;
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 5px;
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
}
.badges {
    font-size: 14px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    background-color: rgba(161, 100, 0, 0.1);
    color: #A16400;
    display: inline-block;
    margin-bottom: 15px;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background-color: #f8f9fa; /* A light background to separate it from other sections */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card-modern {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #A16400;
}

.product-card-modern .icon-container {
    font-size: 40px;
    color: #A16400;
    margin-bottom: 25px;
    display: inline-block;
    background: linear-gradient(135deg, rgba(161, 100, 0, 0.1), rgba(102, 126, 234, 0.1));
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.product-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-card-modern p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.product-card-modern .learn-more-btn {
    color: #A16400;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.product-card-modern .learn-more-btn::after {
    content: '\\f061'; /* Font Awesome arrow right */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.product-card-modern:hover .learn-more-btn::after {
    margin-left: 15px;
} 