/* Hero Section - Match Screenshot */
.hero-section {
    padding: 30px 0 30px;
    background: #ebf3ff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e9ecef;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.wide-container {
    max-width: 1400px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    text-align: center;
}

.hero-tagline {
    display: inline-block;
    padding: 8px 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2563eb;
    background-color: #e0e7ff;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    line-height: 1.2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #1f2937;
    letter-spacing: -0.5px;
}

.gradient-text {
    color: #4f46e5;
    background: none;
    -webkit-text-fill-color: initial;
}

.hero-description {
    line-height: 1.7;
    color: #4b5563;
    margin: 0 auto 40px;
    max-width: 700px;
    font-weight: 400;
}

.hero-content p{
    font-size: 14px!important;
}
.hero-content h1{
    font-size: 2.5rem!important;
}

/* Search Form - Match Screenshot */
.search-form.hero-search {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.search-form.hero-search .search-wrapper {
    flex: 1;
    position: relative;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.15s ease;
}

.search-form.hero-search .search-wrapper:focus-within {
    border-color: #4dabf7;
    box-shadow: 0 0 0 2px rgba(77, 171, 247, 0.2);
}

.search-form.hero-search .search-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    z-index: 1;
    font-size: 18px;
}

.search-form.hero-search input[type="search"] {
    width: 100%;
    padding: 12px 16px 12px 42px;
    background: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    color: #212529;
    line-height: 1.5;
    transition: all 0.15s ease;
}

.search-form.hero-search input[type="search"]::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.search-form.hero-search input[type="search"]:focus {
    outline: none;
    box-shadow: none;
}

.search-form.hero-search input[type="search"]:focus + i {
    color: #4dabf7;
}

.cta-button {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    color: white;
    border: none;
    padding: 0 30px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.cta-button:hover {
    background: linear-gradient(90deg, #84a8f5, #3b82f6);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    background: linear-gradient(90deg, #84a8f5, #3b82f6);
}

/* Hero Features - Match Screenshot */
.hero-features {
    display: flex;
    gap: 10px;
    margin: 25px auto 0;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
}

.feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #495057;
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: all 0.15s ease;
    font-weight: 400;
}

/* Hero Image */
.hero-image {
    flex: 1;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.colorful-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: #FF9F43;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: #FF6B6B;
    bottom: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: #54A0FF;
    top: 50%;
    right: 25%;
    animation-delay: 1s;
}

.hero-illustration {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-illustration i {
    font-size: 4rem;
    margin: 0 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: bounce 2s infinite;
}

.hero-illustration i:nth-child(1) { color: #FF9F43; animation-delay: 0s; }
.hero-illustration i:nth-child(2) { color: #54A0FF; animation-delay: 0.3s; }
.hero-illustration i:nth-child(3) { color: #FF6B6B; animation-delay: 0.6s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* About Section - Professional Style */
.about-section {
    padding: 40px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.section-header {
    margin-bottom: 40px;
}

.section-tagline {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4f46e5;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #111827;
    margin: 0 0 20px;
    font-weight: 700;
    line-height: 1.3;
}

.divider {
    width: 60px;
    height: 3px;
    background: #4f46e5;
    margin: 0 auto;
    position: relative;
}

.divider::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background: #818cf8;
    left: 15px;
    top: 0;
}

.about-text {
    max-width: 700px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .search-form.hero-search {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        padding: 15px;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-main-image {
    animation: float 6s ease-in-out infinite;
}
