/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header styles */
header {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #a4d65e, #8bc34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-content .subtitle {
    font-size: 1.8rem;
    color: #cccccc;
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.3s both;
}
.hero-image {
    flex-shrink: 0;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image img {
    width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: 50px;
    border: 4px solid #333;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: translateY(-10px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #a4d65e;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: #a4d65e;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -3px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 8px solid #a4d65e;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Main content sections */
main {
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
}

article {
    margin-bottom: 80px;
    position: relative;
}

/* Left circle layout */
.with-left-circle {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Right circle layout */
.with-right-circle {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    flex-direction: row-reverse;
}

.circle {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #a4d65e, #8bc34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

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

.circle h2 {
    color: #1a1a1a;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    padding: 10px;
}

.section-content {
    flex: 1;
    padding-top: 20px;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 15px;
}

/* Services section */
.services-list {
    list-style: none;
    margin-top: 0;
}

.services-category {
    margin-bottom: 30px;
}

.services-category h3 {
    color: #a4d65e;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
}

.services-category ul {
    list-style: none;
    padding-left: 20px;
}

.services-category li {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 8px;
    position: relative;
}

.services-category li::before {
    content: '◦';
    color: #a4d65e;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

/* Brands section */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 0;
}

.brand-item {
    font-size: 1.2rem;
    color: #e0e0e0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #a4d65e;
    transition: all 0.3s ease;
    position: relative;
}

.brand-item::before {
    content: '• ';
    color: #a4d65e;
    font-weight: bold;
    margin-right: 8px;
}

.brand-item:hover {
    background: rgba(164, 214, 94, 0.1);
    transform: translateX(5px);
}

/* Testimonials Section */
img.darkbg {
    background-color: #1a1a1a;
}

.testimonials-section {
    background-color: #1a1a1a;
    padding: 80px 40px;
    margin-top: 80px;
}

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

.testimonial-category {
    margin-bottom: 60px;
}

.testimonial-category h2 {
    color: #a4d65e;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.testimonial-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(164, 214, 94, 0.1);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(164, 214, 94, 0.2);
    transform: translateY(-2px);
}

.company-logo {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 0;
}

.testimonial-content blockquote::before {
    content: '"';
    color: #a4d65e;
    font-size: 2rem;
    position: absolute;
    left: -20px;
    top: -10px;
}

.testimonial-content blockquote::after {
    content: '"';
    color: #a4d65e;
    font-size: 2rem;
    position: absolute;
    right: -10px;
    bottom: -15px;
}

.testimonial-content cite {
    display: block;
    color: #a4d65e;
    font-size: 1rem;
    font-style: normal;
    text-align: right;
}

.testimonial-content cite strong {
    font-weight: 600;
}

/* Responsive testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }
    
    .testimonial-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }
    
    .company-logo {
        width: 120px;
        height: 72px;
        align-self: center;
    }
    
    .testimonial-content cite {
        text-align: center;
    }
    
    .testimonial-category h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .testimonial-item {
        padding: 15px;
    }
    
    .company-logo {
        width: 96px;
        height: 60px;
    }
    
    .testimonial-content blockquote {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-section {
    background-color: #1a1a1a;
    padding: 80px 40px;
    margin-top: 80px;
}

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

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(164, 214, 94, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.contact-info h2 {
    color: #a4d65e;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.info-item {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.info-item::before {
    content: '◦';
    color: #a4d65e;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.info-item a {
    color: #a4d65e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #8bc34a;
}

.contact-cta {
    background: linear-gradient(135deg, #a4d65e, #8bc34a);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.contact-cta h2 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta p {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-button {
    background: rgba(26, 26, 26, 0.2);
    color: #1a1a1a;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-button:hover {
    background: rgba(26, 26, 26, 0.3);
    transform: translateY(-2px);
}

/* LinkedIn logo */
.linkedin-logo {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
}

.linkedin-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    vertical-align: top;
}

/* Footer */
footer {
    background: #111;
    padding: 40px;
    text-align: center;
    margin-top: 80px;
    border-top: 1px solid #333;
}

footer p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.4rem;
    }
    
    .hero-image img {
        width: 280px;
        height: 350px;
    }
    
    .with-left-circle,
    .with-right-circle {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .circle {
        width: 150px;
        height: 150px;
    }
    
    .circle h2 {
        font-size: 1.1rem;
    }
    
    main {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.2rem;
    }
    
    .hero-image img {
        width: 250px;
        height: 300px;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .circle {
        width: 120px;
        height: 120px;
    }
    
    .circle h2 {
        font-size: 1rem;
    }
}