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

body {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #09182E;
}

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

/* Header */
.header {
    background-color: #09182E;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

/* Hero Section */
.hero {
    background-color: #09182E;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.gradient-text {
    color: #FFDE68;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #c4c4c4;
    margin-bottom: 40px;
    font-weight: 400;
}
.hero-starting {
    font-size: 1.25rem;
    color: #c4c4c4;
    margin-bottom: 10px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #FFDE68;
    color: #09182E;
    box-shadow: none;
    border: 1px solid #FFDE68;
}

.btn-primary:hover {
    background: #f5d558;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 222, 104, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #FFDE68;
}

.btn-secondary:hover {
    background: #FFDE68;
    color: #09182E;
    border-color: #FFDE68;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #09182E;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    font-weight: 700;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #FFDE68;
    transform: translateY(-5px);
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: #FFDE68;
    margin-bottom: 20px;
    opacity: 0.3;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

.service-card svg {
    width: auto;
    max-width: 60%;
    height: 120px;
    display: block;
    margin: 0 auto 30px auto;
}

.service-card p {
    color: #c4c4c4;
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-link {
    color: #FFDE68;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link:hover {
    transform: translateX(5px);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: #1d2d44;
    text-align: center;
    color: white;
    -webkit-clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
    clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.case-studies {
    text-align: center;
}
.case-studies a {
    margin-top: 40px;
}

.cta .btn-primary {
    background: #FFDE68;
    color: #09182E;
    box-shadow: none;
}

.cta .btn-primary:hover {
    background: #f5d558;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 222, 104, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #09182E;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature h3 {
    font-size: 1.5rem;
    color: #fdde68;
    margin-bottom: 10px;
}

.feature p {
    color: #c4c4c4;
}

/* Footer */
.footer {
    background: #06101f;
    color: white;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fdde68;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #b69413;
}

/* Testimonials Section */
.testimonials {
    margin-top: 60px;
}

.testimonials-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    font-weight: 700;
}

.testimonials-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #FFDE68;
    transform: translateY(-5px);
}

.testimonial-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    height: 100%;
    gap: 20px;
}

.testimonial-reviewer-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-texts {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-reviewer {
    margin-bottom: 15px;
}

.testimonial-reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reviewer-name-flag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.reviewer-name-flag h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.reviewer-name-flag img {
    width: 20px;
    height: auto;
}

.testimonial-reviewer-info p {
    color: #c4c4c4;
    font-size: 0.9rem;
    margin: 0;
}

.clutch-logo {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.testimonial-review {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    flex-grow: 1;
}

.view-more-reviews {
    text-align: center;
    margin-top: 40px;
}

.view-more-link {
    color: #FFDE68;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.view-more-link:hover {
    color: #f5d558;
    transform: translateY(-2px);
}

.view-more-link::after {
    content: ' →';
    transition: all 0.3s ease;
}

.view-more-link:hover::after {
    transform: translateX(5px);
    display: inline-block;
}

/* Consultation Booking Section */
.consultation-booking {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.zoom-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(255, 222, 104, 0.1) 0%, rgba(255, 222, 104, 0.05) 40%, transparent 70%);
    border-radius: 50%;
}

.zoom-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: #152136;
    animation: pulse 3s infinite;
    z-index: 0;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(0.9);
    }
}

.cto-image {
    width: 176px;
    height: 176px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid rgba(255, 222, 104, 0.2);
    transition: all 0.3s ease;
    z-index: 1;
}

.cto-image:hover {
    border-color: #FFDE68;
    transform: scale(1.05);
}

.cto-book-button {
    display: inline-block;
    padding: 5px 15px;
    background: #FFDE68;
    color: #09182E;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 222, 104, 0.3);
    z-index: 1;
}

.cto-book-button:hover {
    background: #f5d558;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 222, 104, 0.4);
}

/* Case Studies Section */
.services p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #c4c4c4;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 20px;
}

/* Video Testimonials Section */
.video-testimonials {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.video-container {
    max-width: 800px;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.video-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #FFDE68;
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .zoom-container {
        width: 300px;
        height: 300px;
    }
    
    .cto-image {
        width: 120px;
        height: 120px;
    }
    
    .cto-book-button {
        font-size: 0.9rem;
        padding: 10px 25px;
    }
    
    .video-container {
        padding: 20px;
        margin: 0 10px;
    }
    
    .video-wrapper {
        border-radius: 8px;
    }
    
    .video-wrapper iframe {
        border-radius: 8px;
    }
}