/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #F3F3F3 0%, #E0E0E0 50%, #D0D0D0 100%);
    min-height: 100vh;
    color: #1D1D4B;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 50px;
    background: rgba(243, 243, 243, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #A74041;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(29, 29, 75, 0.1);
}


.company-name {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #1D1D4B, #A74041);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-container {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-accent {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #A74041, #1D1D4B);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(167, 64, 65, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #1D1D4B;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(167, 64, 65, 0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(167, 64, 65, 0.1);
    color: #A74041;
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.hero-section {
    text-align: center;
    max-width: 1200px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    font-size: 3rem;
    font-weight: 300;
    color: #1D1D4B;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(167, 64, 65, 0.2);
    letter-spacing: 2px;
}

/* Video Container */
.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(29, 29, 75, 0.2);
    border: 3px solid #A74041;
    transform: scale(0.9);
    animation: scaleIn 1s ease forwards 1s;
}

@keyframes scaleIn {
    to {
        transform: scale(1);
    }
}

.main-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 29, 75, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-overlay:hover {
    background: rgba(29, 29, 75, 0.5);
}

.play-button {
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Call to Action */
.cta-section {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button:not(.secondary) {
    background: linear-gradient(45deg, #A74041, #1D1D4B);
    color: #F3F3F3;
    box-shadow: 0 10px 30px rgba(167, 64, 65, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #1D1D4B;
    border: 2px solid #1D1D4B;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(29, 29, 75, 0.3);
}

.cta-button:not(.secondary):hover {
    box-shadow: 0 15px 40px rgba(167, 64, 65, 0.6);
}

.cta-button.secondary:hover {
    background: #1D1D4B;
    color: #F3F3F3;
}

/* Footer */
.footer {
    position: relative;
    margin-top: auto;
    padding: 50px;
    padding-top: 0px
}


.footer-image-container.image-loaded {
    background: none;
}

.footer-image {
    background: #ffffff;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-content-no-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    color: #A74041;
    z-index: 10;
    pointer-events: none;
}

.footer-content-no-overlay > * {
    pointer-events: all;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #A74041;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-weight: bold;
}

.footer-info p {
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    font-weight: 500;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #A74041;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    font-weight: 500;
}

.footer-links a:hover {
    color: #1D1D4B;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
    transform: translateX(5px);
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    font-weight: 500;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #1D1D4B;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}
.video-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #000;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.play-pause-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.play-pause-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.pause-icon {
    display: none;
}


/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        flex-wrap: wrap;
    }
    
    .company-name {
        font-size: 2rem;
    }
    .logo-container{
        flex-grow: 1;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .nav.active {
        display: flex;
    }
    
    .main-content {
        padding: 30px 20px;
    }
    
    .subtitle {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .video-container {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 200px;
    }
    
    .footer-content-no-overlay {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        padding: 20px;
    }
    
    .footer-contact {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .subtitle {
        font-size: 1.5rem;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .logo-accent {
        width: 40px;
        height: 40px;
    }
}

/* Animation Classes */
.animate-in {
    animation: slideInUp 0.8s ease forwards;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
}

.footer-container{
    display: flex;
    justify-content: center;
    gap: 20px;
}