/* Myriad Pro Condensed Font Face */
@font-face {
    font-family: 'Myriad Pro Condensed';
    src: url('/assets/fonts/MyriadPro-Cond-CPIbQwnl.eot');
    src: url('/assets/fonts/MyriadPro-Cond-CPIbQwnl.eot?#iefix') format('embedded-opentype'),
         url('/assets/fonts/MyriadPro-Cond-CHiguhsu.woff2') format('woff2'),
         url('/assets/fonts/MyriadPro-Cond-DILtLneo.woff') format('woff'),
         url('/assets/fonts/MyriadPro-Cond-D3gqit8h.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', 'Myriad Pro Condensed', Arial, sans-serif;
    font-weight: 100;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header.visible {
    opacity: 1;
    transform: translateY(0);
}

.logo {
    font-size: 34px;
    font-weight: 700;
    color: #000;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
}

.social-icon:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
    transform: translateY(-2px);
}
.social-icon.instagram:hover {
    background-color: #F56040;
    color: #fff;
    border-color: #F56040;
}

.social-icon.facebook:hover {
    background-color: #1877F2;
    color: #fff;
    border-color: #1877F2;
}

.social-icon.youtube:hover {
    background-color: #ff0000;
    color: #fff;
    border-color: #ff0000;
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

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

.hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero p {
    font-size: 25pt;
    margin-bottom: 30px;
    margin-top: 30px;
    /*max-width: 700px;*/
    margin-left: auto;
    margin-right: auto;
}

.hero p a {
    color: #333;
    text-decoration: underline;
    position: relative;
    transition: color 0.3s ease;
}

.hero p a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #333;
    transition: width 0.3s ease;
}

.hero p a:hover::after {
    width: 100%;
    animation: running-underline 0.8s ease-in-out;
}

@keyframes running-underline {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(100%);
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #0066cc;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about h2 {
    font-size: 31px;
    margin-bottom: 30px;
    font-weight: 400;
}

.about p {
    font-size: 21px;
    margin-bottom: 20px;
    line-height: 31px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services h2 {
    font-size: 31px;
    margin-bottom: 30px;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.service-item {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 16px;
    font-weight: 400;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Awards Section */
.awards {
    padding: 80px 0;
}

.awards h2 {
    font-size: 31px;
    margin-bottom: 30px;
    font-weight: 400;
}

.awards-intro {
    font-size: 21px;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 73px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 28px;
    color: #666;
    font-weight: 400;
}

.stat-desc {
    font-size: 21px;
    color: #666;
    margin-top: 5px;
}

/* Awards Logos */
.awards-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: center;
}

.award-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.award-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0);
    transition: filter 0.3s ease;
}

.award-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

/* No hover effect for specific awards */
.award-logo.no-hover:hover img {
    filter: grayscale(100%) brightness(0);
}

/* Gray filter for specific awards */
.award-logo.gray-filter img {
    filter: grayscale(100%);
}

.award-logo.gray-filter:hover img {
    filter: grayscale(0%) brightness(1);
}

/* Clients Section */
.clients {
    padding: 80px 0;
    background-color: #f9f9f9;
    overflow: hidden;
    position: relative;
}

.clients h2 {
    font-size: 31px;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.play-pause-btn {
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666;
}

.play-pause-btn:hover {
    border-color: #333;
    color: #333;
}

.play-pause-btn svg {
    width: 14px;
    height: 14px;
}

.client-carousel {
    width: 100%;
    position: relative;
}

/* Grid layout for client logos */
.client-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    padding: 20px 0;
}

.client-logo {
    width: 100%;
    height: 100px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    /*box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

/* Responsive grid adjustments */
@media (max-width: 1200px) {
    .client-track {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .client-track {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .client-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        justify-items: center;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 400px) {
    .client-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        justify-items: center;
        max-width: 300px;
        margin: 0 auto;
    }
}

.client-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* Removed CSS animation - now handled by JavaScript */

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.separator {
    color: #666;
    font-weight: bold;
    font-size: 18px;
}

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

.contact-info a:hover {
    color: #0066cc;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    transform: scale(1.1);
}

.footer-social .social-icon.instagram:hover {
    background-color: #E4405F;
}

.footer-social .social-icon.facebook:hover {
    background-color: #1877F2;
}

.footer-social .social-icon.youtube:hover {
    background-color: #FF0000;
}

.copyright {
    border-top: 1px solid #555;
    padding-top: 20px;
    width: 100%;
}

.copyright p {
    margin: 0;
    font-size: 14px;
    color: #999;
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero h1 {
        font-size: 42px; /* 50px * 0.84 */
    }
    
    .hero p {
        font-size: 21pt; /* 25pt * 0.84 */
    }
    
    .about h2, .services h2, .awards h2, .clients h2 {
        font-size: 26px; /* 31px * 0.84 */
    }
    
    .about p, .awards-intro {
        font-size: 18px; /* 21px * 0.86 */
    }
    
    .stat-number {
        font-size: 61px; /* 73px * 0.84 */
    }
    
    .stat-label {
        font-size: 24px; /* 28px * 0.86 */
    }
    
    .stat-desc {
        font-size: 18px; /* 21px * 0.86 */
    }
    
    .logo {
        font-size: 29px; /* 34px * 0.85 */
    }
    
    .contact-info {
        font-size: 15px; /* 16px * 0.94 */
    }
    
    .separator {
        font-size: 16px; /* 18px * 0.89 */
    }
    
    .service-item {
        font-size: 15px; /* 16px * 0.94 */
    }
    
    .social-icon {
        width: 28px; /* 32px * 0.875 */
        height: 28px;
    }
    
    .social-icon svg {
        width: 14px; /* 16px * 0.875 */
        height: 14px;
    }
    
    .play-pause-btn {
        width: 28px; /* 32px * 0.875 */
        height: 28px;
    }
    
    .play-pause-btn svg {
        width: 12px; /* 14px * 0.86 */
        height: 12px;
    }
    
    .hero, .about, .services, .awards, .clients {
        padding: 60px 0; /* 80px * 0.75 */
    }
    
    .hero {
        padding: 25px 0; /* 30px * 0.83 */
    }
    
    .service-item {
        padding: 18px; /* 20px * 0.9 */
    }
    
    .award-logo {
        padding: 18px; /* 20px * 0.9 */
    }
}

/* Mobile Styles (up to 768px) */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 35px; /* 50px * 0.7 */
    }
    
    .hero p {
        font-size: 18pt; /* 25pt * 0.72 */
    }
    
    .about h2, .services h2, .awards h2, .clients h2 {
        font-size: 22px; /* 31px * 0.71 */
    }
    
    .about p, .awards-intro {
        font-size: 15px; /* 21px * 0.71 */
    }
    
    .stat-number {
        font-size: 51px; /* 73px * 0.7 */
    }
    
    .stat-label {
        font-size: 20px; /* 28px * 0.71 */
    }
    
    .stat-desc {
        font-size: 15px; /* 21px * 0.71 */
    }
    
    .logo {
        font-size: 24px; /* 34px * 0.71 */
    }
    
    .contact-info {
        font-size: 14px; /* 16px * 0.875 */
        flex-direction: column;
        gap: 10px;
    }
    
    .separator {
        font-size: 14px; /* 18px * 0.78 */
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .client-logo {
        width: 150px;
        height: 80px;
        background-color: transparent;
        box-shadow: none;
        border: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .awards-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-item {
        font-size: 14px; /* 16px * 0.875 */
    }
    
    .social-icon {
        width: 24px; /* 32px * 0.75 */
        height: 24px;
    }
    
    .social-icon svg {
        width: 12px; /* 16px * 0.75 */
        height: 12px;
    }
    
    .play-pause-btn {
        width: 24px; /* 32px * 0.75 */
        height: 24px;
    }
    
    .play-pause-btn svg {
        width: 10px; /* 14px * 0.71 */
        height: 10px;
    }
    
    .hero, .about, .services, .awards, .clients {
        padding: 50px 0; /* 80px * 0.625 */
    }
    
    .hero {
        padding: 20px 0; /* 30px * 0.67 */
    }
    
    .service-item {
        padding: 15px; /* 20px * 0.75 */
    }
    
    .award-logo {
        padding: 15px; /* 20px * 0.75 */
    }
    
    .footer {
        padding: 40px 0; /* 50px * 0.8 */
    }
}

/* Small Mobile Styles (up to 480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px; /* 50px * 0.56 */
    }
    
    .hero p {
        font-size: 14pt; /* 25pt * 0.56 */
    }
    
    .about h2, .services h2, .awards h2, .clients h2 {
        font-size: 18px; /* 31px * 0.58 */
    }
    
    .about p, .awards-intro {
        font-size: 12px; /* 21px * 0.57 */
    }
    
    .stat-number {
        font-size: 41px; /* 73px * 0.56 */
    }
    
    .stat-label {
        font-size: 16px; /* 28px * 0.57 */
    }
    
    .stat-desc {
        font-size: 12px; /* 21px * 0.57 */
    }
    
    .logo {
        font-size: 19px; /* 34px * 0.56 */
    }
    
    .contact-info {
        font-size: 12px; /* 16px * 0.75 */
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .awards-logos {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .hero, .about, .services, .awards, .clients {
        padding: 40px 0;
    }
    
    .service-item {
        font-size: 12px; /* 16px * 0.75 */
    }
    
    .social-icon {
        width: 20px; /* 32px * 0.625 */
        height: 20px;
    }
    
    .social-icon svg {
        width: 10px; /* 16px * 0.625 */
        height: 10px;
    }
    
    .play-pause-btn {
        width: 20px; /* 32px * 0.625 */
        height: 20px;
    }
    
    .play-pause-btn svg {
        width: 8px; /* 14px * 0.57 */
        height: 8px;
    }
    
    .hero {
        padding: 15px 0; /* 30px * 0.5 */
    }
    
    .service-item {
        padding: 12px; /* 20px * 0.6 */
    }
    
    .award-logo {
        padding: 12px; /* 20px * 0.6 */
    }
    
    .footer {
        padding: 30px 0; /* 50px * 0.6 */
    }
}
