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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

h1, h2, h3 {
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.logo {
    display: inline-block;
    margin: 1px 0 0 40px;
    padding: 0;
    max-width: 150px;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

.nav-links ul {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 50px;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
}

.nav-links a:hover {
    color: #000;
}

.contact-button a {
    padding: 9px 18px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 12px;
    transition: background-color 0.3s ease;
}

.contact-button a:hover {
    background-color: #333;
}

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

.hero h1 {
    font-size: 33px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-button {
    padding: 12px 40px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #333;
    transform: scale(1.05);
}

/* Navigation Tags */
.navigation-tags {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.navigation-tags a {
    padding: 8px 16px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    border-radius: 24px;
    background-color: #f0f0f0;
    transition: background-color 0.3s ease;
}

.navigation-tags a.active {
    background-color: #e0e0e0;
}

/* Hero Slider */
.hero-slider {
    margin: 50px auto;
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 450px;
    overflow: hidden;
    border-radius: 16px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Carousel Indicators */
.sk-carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 24px;
    width: fit-content;
    margin: 0 auto;
}

.sk-carousel-indicators button {
    background: none;
    border: none;
    padding: 8px 16px;
    margin: 0 4px;
    border-radius: 24px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.3s ease;
}

.sk-carousel-indicators button.active {
    background-color: #e0e0e0;
    color: #000;
}

.sk-carousel-indicators button:hover {
    background-color: #d6d6d6;
}

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

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    align-items: start;
}

.service {
    text-align: center;
    background-color: #fafafa;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service img,
.service video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Video Loading Indicator */
.video-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
}

/* Case Studies Section */
/* Case Studies Section - Square Images */
.case-studies {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.case-studies h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #000;
    font-weight: 600;
}

.case-study-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0;
}

.case-study {
    flex: 0 0 70%;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 400px;
}

.case-study:hover {
    transform: scale(1.02);
}

.case-study-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.case-study-content h3 {
    color: #000;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
}

.case-study-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
    font-size: 15px;
}

/* Square Case Study Images */
.case-study-image {
    width: 100%;
    height: 200px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8f9fa;
    order: -1;
}

.case-study-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.case-study-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .case-study-slider {
        padding: 10px 0;
    }
    
    .case-study {
        flex: 0 0 85%;
        max-width: 320px;
    }
    
    .case-study-image {
        height: 200px;
    }
    
    .case-study-content {
        padding: 25px 20px;
    }
    
    .case-study-content h3 {
        font-size: 20px;
    }
    
    .case-study-button {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .case-study-image {
        height: 180px;
    }
    
    .case-study-content {
        padding: 20px 15px;
    }
}
/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact p {
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact form input,
.contact form select,
.contact form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact form input:focus,
.contact form select:focus,
.contact form textarea:focus {
    outline: none;
    border-color: #000;
}

.contact form textarea {
    height: 120px;
    resize: vertical;
}

/* Captcha Section - Fixed Alignment */
/* Captcha Section - Compact Equal Sizes */
.captcha-container {
    display: flex;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 20px;
    max-width: 300px; /* Limits total width to make it compact */
}

.captcha-display {
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    padding: 8px 12px; /* Reduced padding */
    border-radius: 6px; /* Slightly smaller radius */
    font-family: 'Courier New', monospace;
    font-size: 14px; /* Smaller font */
    font-weight: bold;
    letter-spacing: 1px; /* Reduced letter spacing */
    width: 80px; /* Fixed width */
    height: 40px; /* Fixed height */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevents shrinking */
}

.captcha-refresh {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 8px 12px; /* Reduced padding */
    border-radius: 6px; /* Matches other elements */
    cursor: pointer;
    font-size: 14px; /* Smaller font */
    transition: background-color 0.3s ease;
    width: 40px; /* Fixed width */
    height: 40px; /* Same height as other elements */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevents shrinking */
}

.captcha-refresh:hover {
    background-color: #5a6268;
}

.captcha-input {
    padding: 8px 12px; /* Reduced padding */
    border: 2px solid #e1e5e9;
    border-radius: 6px; /* Matches other elements */
    font-size: 14px; /* Smaller font */
    transition: border-color 0.3s ease;
    width: 80px; /* Fixed width, same as display */
    height: 40px; /* Same height as other elements */
    text-align: center; /* Center the input text */
    flex-shrink: 0; /* Prevents shrinking */
}

.captcha-input:focus {
    outline: none;
    border-color: #000;
}

/* Mobile responsive - stack vertically if needed */
@media (max-width: 400px) {
    .captcha-container {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        max-width: 120px;
        margin: 0 auto 20px auto;
    }
    
    .captcha-display,
    .captcha-refresh,
    .captcha-input {
        width: 100px;
        height: 36px;
    }
}

/* Consent Checkbox */
.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.consent input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 3px;
}

.consent label {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Success Message */
.success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Error Message */
.error-message {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.subscribe-input {
    flex: 1;
    padding: 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
}

.subscribe-button {
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-button:hover {
    background-color: #333;
}

/* Footer Section */
footer {
    background-color: #f5f5f5;
    color: #333;
    padding: 50px 0;
    font-size: 14px;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-branding {
    flex: 1;
    text-align: left;
    margin-bottom: 20px;
}

.footer-branding h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-branding p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social img {
    width: 24px;
    height: 24px;
    filter: invert(0.2);
    transition: filter 0.3s ease;
}

.footer-social img:hover {
    filter: invert(0);
}

.footer-links-section {
    display: flex;
    gap: 50px;
    flex: 2;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

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

.footer-links ul li a:hover {
    color: #000;
}

.footer-copyright {
    flex-basis: 100%;
    text-align: center;
    color: #999;
    margin-top: 30px;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 1000;
}

.cookie-consent p {
    margin-bottom: 10px;
}

.accept-button {
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accept-button:hover {
    background-color: #ddd;
}

/* About Page Specific Styles */
.about-section {
    padding-top: 120px;
}

.ss {
    padding-top: 120px;
}

#justify p {
    margin: 0 auto;
    max-width: 90%;
    text-align: justify;
    line-height: 1.8;
}

/* Company Page Styles */
.team-section {
    padding: 60px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 5px;
    font-size: 20px;
}

.team-member p {
    color: #666;
    font-size: 16px;
}

.mission-section,
.vision-section,
.contact-info-section {
    padding: 40px 0;
}

/* Field Error Styles */
.field-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        padding: 15px 20px;
    }
    
    .nav-links ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-links li {
        margin-left: 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study-slider {
        padding: 10px 0;
    }
    
    .case-study {
        flex: 0 0 95%;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links-section {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        margin-bottom: 20px;
    }
    
    .captcha-container {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .captcha-display {
        align-self: center;
        min-width: 120px;
    }
    
    .captcha-refresh {
        align-self: center;
        width: fit-content;
    }
    
    .captcha-input {
        max-width: 100%;
    }
    
    .subscribe-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}
/* Explore More Button Styles */
.explore-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.explore-button:hover {
    background-color: #fff;
    color: #000;
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Updated Service Card Styles */
.service {
    text-align: center;
    background-color: #fafafa;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #000;
}

.service p {
    color: #666;
    line-height: 1.6;
    margin-bottom: auto;
    flex-grow: 1;
}

/* Ensure consistent card heights */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}
/* Solution Pages Styles */

/* Hero Section */
.solution-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.solution-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-image {
    text-align: center;
}

.hero-image video,
.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.solution-features {
    padding: 80px 0;
    background-color: #fff;
}

.solution-features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #000;
}

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

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f3f4;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Applications Section */
.solution-applications {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.solution-applications h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #000;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.application-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.application-item img,
.application-item video {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.application-content {
    padding: 30px;
}

.application-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.application-content p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Benefits Section */
.solution-benefits {
    padding: 80px 0;
    background-color: #fff;
}

.solution-benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #000;
}

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

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* CTA Section */
.solution-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    text-align: center;
}

.solution-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.solution-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.solution-cta .cta-button {
    background-color: #fff;
    color: #000;
    border: 2px solid #fff;
}

.solution-cta .cta-button:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .solution-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .solution-features h2,
    .solution-applications h2,
    .solution-benefits h2,
    .solution-cta h2 {
        font-size: 28px;
    }
    
    .features-grid,
    .applications-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card,
    .application-content {
        padding: 30px 20px;
    }
}

/* Company Page Styles */

/* Company Hero Section */
.company-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

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

.company-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
    line-height: 1.2;
}

.company-hero p {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Company Facts Section */
.company-facts {
    padding: 80px 0;
    background-color: #fff;
}

.company-facts h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #000;
    font-weight: 600;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.fact-item {
    text-align: center;
    padding: 30px 20px;
}

.fact-number {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 1;
}

.fact-label {
    font-size: 16px;
    color: #666;
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
}

/* Mission Section */
.company-mission {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #000;
    font-weight: 600;
}

.mission-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.mission-visual img,
.vision-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Vision Section */
.company-vision {
    padding: 80px 0;
    background-color: #fff;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vision-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #000;
    font-weight: 600;
}

.vision-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

/* Capabilities Section */
.company-capabilities {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.company-capabilities h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #000;
    font-weight: 600;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.capability-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f3f4;
}

.capability-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.capability-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.capability-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.capability-item p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Leadership Section */
.company-leadership {
    padding: 80px 0;
    background-color: #fff;
}

.company-leadership h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #000;
    font-weight: 600;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.leader-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f3f4;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.leader-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f1f3f4;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.leader-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.leader-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.company-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.contact-info > p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.office-info {
    margin-bottom: 30px;
}

.office-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.office-info p {
    color: #ccc;
    line-height: 1.6;
    font-size: 16px;
}

.contact-details p {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-details a {
    color: #fff;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-visual {
    text-align: center;
}

.company-logo {
    max-width: 300px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.tagline {
    font-size: 18px;
    color: #ccc;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-hero h1 {
        font-size: 36px;
    }
    
    .company-hero p {
        font-size: 18px;
    }
    
    .mission-content,
    .vision-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .vision-content {
        grid-template-areas:
            "text"
            "visual";
    }
    
    .vision-text {
        grid-area: text;
    }
    
    .vision-visual {
        grid-area: visual;
    }
    
    .facts-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .capabilities-grid,
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .company-facts h2,
    .company-capabilities h2,
    .company-leadership h2 {
        font-size: 28px;
    }
    
    .mission-text h2,
    .vision-text h2,
    .contact-info h2 {
        font-size: 28px;
    }
    
    .leader-card {
        padding: 30px 20px;
    }
    
    .company-logo {
        max-width: 200px;
    }
}
/* YouTube Video Responsive Styling */
.video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

/* Override for hero sections */
.hero-image .video-container,
.solution-hero .hero-image .video-container {
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .video-container {
        border-radius: 12px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
}
