@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;700&display=swap');

/* Custom Font Faces */
@font-face {
    font-family: 'Heuvel Grotesk DEMO';
    src: url('path-to/HeuvelGroteskDEMO-Bold.woff2') format('woff2'),
         url('path-to/HeuvelGroteskDEMO-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Atyp Display TRIAL';
    src: url('path-to/AtypDisplayTRIAL-Medium.woff2') format('woff2'),
         url('path-to/AtypDisplayTRIAL-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
/* Base Styles */
body {
    font-family: 'Atyp Display TRIAL', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.logo {
    width: 12rem;
    padding: 1.5rem 0;
}

.logo-white {
    width: 11.5rem;
    margin-bottom: 1.3rem;
}

.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #0066ff;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.active-nav:after {
    width: 100%;
}

@media (max-width: 768px) {
    .counter {
        font-size: 2rem;
    }
}

.font-header {
    font-family: 'Heuvel Grotesk DEMO', sans-serif;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #0066ff;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { 
        opacity: 0;
        transform: translateX(-50px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes flipInY {
    from {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    to {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

/* Animation Classes */
.animate-fadeIn {
    animation: fadeIn 1s ease-out forwards;
}

.animate-fadeIn.delay-100 {
    animation-delay: 0.1s;
}

.animate-fadeIn.delay-200 {
    animation-delay: 0.2s;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-flipInY {
    animation: flipInY 0.8s ease-out forwards;
    backface-visibility: visible !important;
}

.animate-flipInY.delay-100 {
    animation-delay: 0.1s;
}

.animate-flipInY.delay-200 {
    animation-delay: 0.2s;
}

.animate-flipInY.delay-300 {
    animation-delay: 0.3s;
}

.animate-zoomIn {
    animation: zoomIn 0.6s ease-out forwards;
}

.animate-zoomIn.delay-100 {
    animation-delay: 0.1s;
}

.animate-zoomIn.delay-200 {
    animation-delay: 0.2s;
}

.animate-zoomIn.delay-300 {
    animation-delay: 0.3s;
}

.animate-bounce {
    animation: bounce 2s infinite;
}
/* Section Styles */
.section {
    scroll-margin-top: 80px;
    padding: 40px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 30px 0;
    }
}
/* Stat Boxes */
.stat-box {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    min-width: 120px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #0066ff;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}
/* Service Cards */
.service-card {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

@media (max-width: 768px) {
    .service-card {
        padding: 20px;
    }
    
    .grid.md\:grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    width: 30px;
    height: 30px;
    stroke: #0066ff;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0066ff;
}

.service-desc {
    color: #666;
    font-size: 1rem;
}

/* Project Cards */
.project-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.1);
}

.project-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.project-content {
    padding: 24px;
    background-color: white;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.project-desc {
    color: #666;
    margin-bottom: 16px;
}
.project-link {
    color: #0066ff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.project-link:hover {
    color: #0052cc;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close-modal:hover {
    color: #333;
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin: 20px 0;
}

.modal-details {
    margin: 20px 0;
    padding-left: 20px;
}

.modal-details li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 20px;
    }
    
    .modal-image {
        height: 200px;
    }
}
.project-link i {
    margin-left: 5px;
    width: 16px;
    height: 16px;
}
/* Team Cards */
.team-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .grid.sm\:grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-image {
        height: 250px;
    }
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.1);
}

.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-details {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-position {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: #0066ff;
    color: white;
}

.team-social i {
    width: 16px;
    height: 16px;
}
/* CEO Spotlight */
.ceo-quote {
    background: linear-gradient(135deg, #0066ff, #0047b3);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.ceo-quote i {
    color: rgba(255, 255, 255, 0.3);
}

/* CTA Section */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-blue-600 {
    --tw-gradient-from: #2563eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0));
}

.to-blue-800 {
    --tw-gradient-to: #1e40af;
}
/* Testimonials */
.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

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

.testimonial-content {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 4px;
    text-align: left;
}

.testimonial-company {
    opacity: 0.8;
    font-size: 0.9rem;
    text-align: left;
}
/* Awards */
.award-item {
    text-align: center;
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.award-item:hover {
    background-color: #f8f9fa;
    transform: translateY(-5px);
}

.award-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.award-icon i {
    width: 40px;
    height: 40px;
}

.award-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.award-item:hover .award-title {
    color: #0066ff;
}

.award-org {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.award-tooltip {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 200px;
    z-index: 10;
}

.award-item:hover .award-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -60px;
}

.award-tooltip::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #333;
}
/* Partners */
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px;
}

.partner-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

/* FAQ */
.faq-container {
    border-radius: 12px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background-color: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 500px;
}
/* Contact Form */
.contact-form {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }
    
    .flex-col.md\:flex-row {
        flex-direction: column;
    }
    
    .md\:w-1\/2 {
        width: 100%;
    }
}
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #0066ff;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
    outline: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item i {
    width: 24px;
    height: 24px;
    color: #0066ff;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-text {
    color: #666;
}
/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(0, 102, 255, 0.2);
    border: 1px solid #0066ff;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
    mix-blend-mode: difference;
}

.cursor-hover {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 102, 255, 0.4);
}

/* Scroll Reveal Animations */
[data-scroll] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-scroll="fade"] {
    transform: translateY(30px);
}

[data-scroll="fade-left"] {
    transform: translateX(-30px);
}

[data-scroll="fade-right"] {
    transform: translateX(30px);
}

[data-scroll].scrolled {
    opacity: 1;
    transform: translate(0);
}

/* Hover Effects */
.service-card:hover .service-icon {
    transform: rotateY(180deg);
    background-color: #0066ff;
}

.service-card:hover .service-icon i {
    stroke: white;
}

.project-card:hover .project-link {
    padding-right: 0;
}

.project-card:hover .project-link i {
    margin-left: 10px;
}
/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }
  
  .nav-links {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stat-box {
        min-width: 100px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .testimonial-slide {
        padding: 30px 20px;
    }
}