/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f8fa;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Header Section */
header {
    background: linear-gradient(to right, rgba(141, 40, 126, 0.9), rgba(141, 40, 126, 0.7));
    color: white;
    padding: 100px 0;
}

header h1 {
    font-size: 3rem;
    font-weight: 600;
    margin: 0 0 10px;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-btn {
    padding: 15px 30px;
    background-color: white;
    color: rgb(141, 40, 126);
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.download-btn img {
    margin-top: 20px;
    width: 180px;
}

/* About Section */
#about {
    padding: 60px 0;
    background-color: #fff;
}

#about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 20px auto;
}

/* Features Section */
#features {
    padding: 60px 0;
}

#features h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: rgb(141, 40, 126);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item img {
    max-width: 80px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
}

/* Footer */
footer {
    background-color: rgb(141, 40, 126);
    color: white;
    padding: 20px 0;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Main Header Styles */
.main-header {
    background: linear-gradient(135deg, rgba(141, 40, 126, 0.9), #3a1c71, #f5af19);
    color: #fff;
    padding: 100px 0; /* Increased padding for more breathing room */
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    z-index: -1;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1.5s ease-in-out;
}

/* Branding */
.branding h1 {
    font-size: 64px; /* Slightly larger */
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Added a text shadow */
}

.tagline {
    font-size: 24px;
    font-weight: 300;
    opacity: 0.9;
}

.divider {
    width: 60px;
    height: 3px;
    background: #fff;
    margin: 10px 0;
    border-radius: 10px;
    opacity: 0.7; /* A divider between the tagline and sub-tagline */
}

.sub-tagline {
    font-size: 18px;
    font-weight: 400;
    margin-top: -15px;
    opacity: 0.8;
    max-width: 800px;
    line-height: 1.6; /* Increased line height for readability */
}

/* Actions (CTA & Download) */
.actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* More space between CTA and download */
}

.cta-btn {
    background-color: rgba(141, 40, 126, 0.9);
    color: #fff;
    padding: 20px 40px; /* Larger padding for a bold appearance */
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    border-radius: 40px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px; /* Space between the text and the icon */
}

.cta-btn i {
    font-size: 16px;
    margin-right: 5px;
}

.cta-btn:hover {
    background-color: #b135a5;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.download-btn a img {
    width: 180px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.3));
}

.download-btn a img:hover {
    transform: scale(1.15);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .branding h1 {
        font-size: 48px;
    }
    
    .cta-btn {
        padding: 16px 32px;
        font-size: 18px;
    }
    
    .download-btn a img {
        width: 150px;
    }
}
