/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 70vh;
}

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

.brand-circle {
    margin-bottom: 30px;
    position: relative;
}

.circle-border {
    width: 80px;
    height: 80px;
    border: 3px solid #f5b040;
    border-radius: 50%;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #1f2937;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-highlight {
    color: #f59e0b;
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    border-radius: 3px;
}

.hero-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 500px;
    height: 500px;
}

.image-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-tool-image {
    width: 85%;
    height: 85%;
    object-fit: cover;
    border-radius: 50%;
}

.floating-element {
    position: absolute;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
    width: 60px;
    height: 60px;
    top: 50px;
    right: 20px;
    animation-delay: -2s;
}

.floating-element-2 {
    width: 80px;
    height: 80px;
    bottom: 100px;
    left: 0px;
    animation-delay: -4s;
    opacity: 0.7;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .image-container {
        width: 400px;
        height: 400px;
    }

    .image-circle {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .image-container {
        width: 300px;
        height: 300px;
    }

    .image-circle {
        width: 250px;
        height: 250px;
    }

    .floating-element-1,
    .floating-element-2 {
        display: none;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Elegant Section Transitions */
.section-divider {
    position: relative;
    height: 120px;
    overflow: hidden;
    background: var(--light-color);
}

.wave-bottom {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    fill: var(--white);
    opacity: 0.9;
}

.section-transition {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transition-line {
    position: relative;
    width: 200px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--primary-color) 50%,
        transparent 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.transition-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(
        135deg,
        var(--secondary-color),
        var(--accent-color)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    box-shadow: 0 5px 20px rgba(241, 94, 42, 0.3);
    animation: rotate-star 4s linear infinite;
}

@keyframes rotate-star {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.diamond-transition {
    position: relative;
    height: 100px;
    background: linear-gradient(
        180deg,
        var(--white) 0%,
        var(--primary-color) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.diamond-container {
    position: relative;
}

.diamond {
    width: 60px;
    height: 60px;
    background: linear-gradient(
        135deg,
        var(--secondary-color),
        var(--accent-color)
    );
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(241, 94, 42, 0.4);
    animation: diamond-float 3s ease-in-out infinite;
}

.diamond i {
    transform: rotate(-45deg);
    font-size: 20px;
    color: var(--white);
}

@keyframes diamond-float {
    0%,
    100% {
        transform: rotate(45deg) translateY(0px);
    }

    50% {
        transform: rotate(45deg) translateY(-10px);
    }
}

/* Floating Shapes for About Section */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Animated Background Particles */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.floating-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particle-float 15s linear infinite;
}

.particle-1 {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle-2 {
    left: 30%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.particle-3 {
    left: 60%;
    animation-delay: 6s;
    animation-duration: 15s;
}

.particle-4 {
    left: 80%;
    animation-delay: 9s;
    animation-duration: 20s;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }

    90% {
        opacity: 1;
        transform: translateY(-10vh) scale(1);
    }

    100% {
        transform: translateY(-20vh) scale(0);
        opacity: 0;
    }
}

/* Services Section */
.services {
    padding: 100px 0 0 0;
    position: relative;
    overflow: hidden;
    background: var(--light-color);
    background: linear-gradient(
        180deg,
        var(--light-color) 0%,
        rgba(255, 255, 255, 1) 100%
    );
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-box {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-box:hover .service-image img {
    transform: scale(1.05);
}

/* Circle icon overlapping image and text */
.service-icon {
    position: absolute;
    top: 170px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(93, 50, 146, 0.3);
    z-index: 2;
}

.service-content {
    padding: 40px 20px 30px;
    text-align: center;
}

.service-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 0 0 40px;
    background: #f9fafb;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Circle image with decorative element */
.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.decorative-circle {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(
        135deg,
        var(--secondary-color),
        var(--accent-color)
    );
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* About text columns */
.about-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-column h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-column h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-column p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-list {
    list-style: none;
    margin-bottom: 30px;
}

.about-list li {
    position: relative;
    padding: 8px 0;
    padding-right: 25px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-list li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 8px;
    color: var(--secondary-color);
    font-weight: bold;
}

.about-btn {
    display: inline-block;
    background: linear-gradient(
        135deg,
        var(--secondary-color),
        var(--accent-color)
    );
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(241, 94, 42, 0.3);
}

.about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(241, 94, 42, 0.4);
}

/* Business Help Section */
.business-help {
    padding: 120px 0;
    position: relative;
    background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.business-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5));
}

.business-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.business-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.business-content > p {
    font-size: 1.3rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
}

.business-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.business-feature {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.business-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.business-feature p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.business-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-btn:first-child {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.cta-btn:first-child:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

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

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Footer Styles */
.footer {
    background: #2d2d2e;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.contact-info .contact-item {
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--white);
}

.contact-item span {
    opacity: 0.8;
    font-weight: 100;
}

/* Copyright */
.copyright {
    background: #1e1e1f;
    color: var(--white);
    padding: 20px 0;
    text-align: center;
}

.copyright p {
    opacity: 0.8;
    margin: 0;
}
