/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: #333333;
    padding: 10px 0;
    color: #ffffff;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.top-nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.top-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.top-link:hover {
    color: #cccccc;
}

.top-separator {
    color: #ffffff;
    margin: 0 5px;
}

.top-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-fb {
    background-color: #1877f2;
}

.social-tw {
    background-color: #1da1f2;
}

.social-li {
    background-color: #0077b5;
}

.social-gp {
    background-color: #db4437;
}

.social-ig {
    background-color: #e4405f;
}

.social-yt {
    background-color: #ff0000;
}

.social-icon:hover {
    transform: scale(1.1);
}

.top-phone {
    color: #ffffff;
    font-size: 12px;
    margin-left: 10px;
}

/* Main Header */
.main-header {
    background-color: #333333;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 24px;
    color: #ffffff;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #cccccc;
}

.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: none;
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 4px;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
    text-decoration: underline;
}

.dropdown-link:hover {
    background-color: #f5f5f5;
}

/* Hero Banner */
.hero-banner {
    background-color: #B8860B;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-title {
    font-size: 42px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-text {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    padding: 15px 40px;
    background-color: #ffffff;
    color: #B8860B;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Section Styles */
.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #B8860B;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.section-title-light {
    color: #DAA520;
}

.section-content {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
}

.section-content p {
    margin-bottom: 20px;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Videos Section */
.videos-section {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.video-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-color: #000000;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.video-title-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #333333;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 2;
}

.play-button:hover {
    transform: scale(1.1);
    background-color: #ffffff;
}

.video-social {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.video-social-link {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.video-social-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.video-phone {
    color: #666666;
    font-size: 14px;
    margin-left: auto;
}

/* What We Do Section */
.what-we-do-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Strategic Approach Section */
.strategic-section {
    padding: 80px 0;
    background-color: #333333;
}

.strategic-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.strategic-list li {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.8;
}

.strategic-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #DAA520;
    font-size: 24px;
    font-weight: bold;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.news-title {
    font-size: 42px;
    font-weight: bold;
    color: #007bff;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.news-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
}

.news-image-1 {
    background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.news-image-2 {
    background-image: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.news-image-3 {
    background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.news-image-4 {
    background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.news-image-5 {
    background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.news-image-6 {
    background-image: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.news-card-title {
    font-size: 20px;
    font-weight: bold;
    color: #007bff;
    margin: 20px 20px 10px;
    line-height: 1.3;
}

.news-card-title:hover {
    text-decoration: underline;
}

.news-date {
    font-size: 12px;
    color: #999999;
    margin: 0 20px 15px;
}

.news-excerpt {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0 20px 20px;
}

.news-readmore {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin: 0 20px 20px;
    transition: color 0.3s ease;
}

.news-readmore:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Footer */
.site-footer {
    padding: 60px 0;
    background-color: #333333;
    color: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-links-title {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #cccccc;
}

.footer-copyright {
    font-size: 14px;
    color: #cccccc;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .news-title {
        font-size: 32px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .top-bar-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-content {
        flex-direction: column;
    }
}
