:root {
    --primary: #f09433;
    --secondary: #e6683c;
    --accent: #bc2a8d;
    --success: #833ab4;
    --warning: #fcaf45;
    --light: #f8f9fa;
    --dark: #212529;
    --gradient-primary: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc2a8d 100%);
    --gradient-secondary: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    --gradient-accent: linear-gradient(45deg, #ffdc80, #fcaf45, #f77737, #fd1d1d, #e1306c);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --hover-effect: translateY(-5px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #4a4a4a;
    background-color: #fafafa;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 60px; /* Move logo container to the right */
}

.logo-icon {
    width: 125px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 25px; /* Additional right movement */
}

.enlarged-logo {
    width: 200%; /* 2x larger */
    height: auto;
    max-width: none;
    margin-left: 0;
}

.logo-icon img {
    width: 100%;
    height: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text a {
    text-decoration: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s;
    white-space: nowrap;
    font-size: 15px;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 0.3s;
}

nav a:hover {
    color: var(--primary);
}

nav a:hover:after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    gap: 6px;
    white-space: nowrap;
    font-size: 14px;
}

.btn-sm {
    padding: 8px 16px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 10px rgba(240, 148, 51, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 6px 15px rgba(240, 148, 51, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.notification-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    position: relative;
    transition: all 0.3s;
    font-size: 15px;
}

.notification-btn:hover {
    background: #e2e8f0;
    color: var(--primary);
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    padding: 60px 0 70px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 800 400"><rect fill="%23f09433" width="800" height="400"/><path fill="%23e6683c" fill-opacity="0.2" d="M0 192L26.7 202.7C53.3 213 107 235 160 234.7C213.3 235 267 213 320 197.3C373.3 181 427 171 480 186.7C533.3 203 587 245 640 250.7C693.3 256 747 224 773.3 208L800 192L800 401L773.3 401C746.7 401 693 401 640 401C586.7 401 533 401 480 401C426.7 401 373 401 320 401C266.7 401 213 401 160 401C106.7 401 53 401 27 401L0 401Z"></path></svg>') bottom/cover no-repeat, var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: white;
    line-height: 1.2;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 22px;
    opacity: 0.9;
}

.highlight-text {
    background: rgba(255, 255, 255, 0.15);
    padding: 14px 18px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid var(--accent);
    font-size: 1.05rem;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-transparent {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-transparent:hover {
    background: white;
    color: var(--primary);
}

.hero-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.88rem;
    opacity: 0.8;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 48%;
    max-width: 550px;
    z-index: 1;
}

/* Features Section */
.features {
    padding: 85px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-title {
    font-size: 2.3rem;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    color: #64748b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: var(--hover-effect);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
}

.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: rgba(240, 148, 51, 0.1);
    color: var(--primary);
    font-size: 26px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.feature-card p {
    color: #64748b;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    gap: 5px;
    transition: gap 0.3s;
    font-size: 0.95rem;
}

.feature-link:hover {
    gap: 10px;
}

/* User Types Section */
.user-types {
    padding: 75px 0;
    background: #f8fafc;
}

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

.user-card {
    background: white;
    border-radius: 16px;
    padding: 26px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.user-card:hover {
    transform: var(--hover-effect);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.user-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.user-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    position: relative;
}

.user-avatar:before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.user-card:hover .user-avatar:before {
    opacity: 1;
}

.user-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.user-card p {
    color: #64748b;
    font-size: 0.92rem;
}

/* CTA Section */
.cta {
    padding: 90px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 20%);
    background-size: 20px 20px;
    transform: rotate(30deg);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta h2 {
    color: white;
    font-size: 2.3rem;
    margin-bottom: 18px;
}

.cta p {
    font-size: 1.15rem;
    margin-bottom: 28px;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 75px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 35px;
    margin-bottom: 55px;
}

.footer-brand h3 {
    color: white;
    font-size: 1.7rem;
    margin-bottom: 18px;
}

.footer-brand p {
    color: #94a3b8;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    font-size: 15px;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: white;
    margin-bottom: 18px;
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 11px;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: white;
    gap: 10px;
}

.footer-column ul li a i {
    font-size: 11px;
}

.copyright {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hero-image {
        width: 45%;
    }
}

@media (max-width: 992px) {
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    nav ul {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
        padding: 15px 0;
    }
    
    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        margin: 5px 0;
    }
    
    .header-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 50px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-value {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .hero p {
        font-size: 1.05rem;
    }
    
    .highlight-text {
        font-size: 1rem;
        padding: 12px 15px;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    nav a {
        font-size: 14px;
    }
}

/* Animation Effects */
@keyframes float {
    0% { transform: translateY(0px) translateX(0); }
    50% { transform: translateY(-8px) translateX(5px); }
    100% { transform: translateY(0px) translateX(0); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Instagram-style gradient text */
.instagram-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* WordPress specific styles */
.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.wp-block-image {
    margin-bottom: 1.5em;
}

.wp-block-image img {
    height: auto;
    max-width: 100%;
}

.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    gap: 6px;
    white-space: nowrap;
    font-size: 14px;
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 10px rgba(240, 148, 51, 0.25);
}

.wp-block-button__link:hover {
    box-shadow: 0 6px 15px rgba(240, 148, 51, 0.4);
    transform: translateY(-2px);
}
/* Search form styling */
.search-form {
    display: inline-block;
    position: relative;
}

.search-form .search-field {
    padding: 9px 15px 9px 38px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 14px;
    width: 220px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.search-form .search-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(240, 148, 51, 0.15);
    width: 250px;
}

.search-form .search-submit {
    display: none; /* Hide the default submit button */
}