/* General Layout */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Playfair Display', Georgia, serif; }

body { background-color: #3c525e; color: #ffffff; line-height: 1.6; overflow-x: hidden; }

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 60px; background: transparent; }

.logo-link { display: flex; align-items: center; text-decoration: none; gap: 15px; }

.nav-logo { height: 50px; width: 50px; object-fit: contain; border-radius: 4px; }

.logo { font-size: 24px; font-weight: 800; font-style: italic; color: #172635; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 30px; }

.nav-links a { color: #172635; text-decoration: none; font-size: 18px; font-weight: 600; font-family: sans-serif; }

.btn-nav { background: #172635; color: #ffffff !important; padding: 10px 22px; border-radius: 50px; font-size: 15px !important; }

/* Hero Section */
.hero-section { padding: 40px 60px 80px 60px; }

.hero-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 40px; }

.hero-text-block { flex: 1.2; }

.hero-text-block h1 { font-size: 52px; font-weight: 900; color: #172635; margin-bottom: 30px; }

.btn-hero { display: inline-block; background: #546a76; color: #ffffff; padding: 16px 40px; border-radius: 50px; text-decoration: none; font-weight: 600; }

.hero-image-block { flex: 1; width: 100%; min-height: 250px; }

.video-wrapper { 
    position: relative; 
    padding-bottom: 56.25%; 
    height: 0; 
    width: 100%; 
    margin-top: 25px; 
    border-radius: 6px; 
    overflow: hidden; 
    box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
    background: #000;
}

.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Ticker */
.ticker-wrap { width: 100%; background: #2b3d47; overflow: hidden; padding: 15px 0; border-top: 2px solid #172635; border-bottom: 2px solid #172635; }

.ticker { display: flex; white-space: nowrap; animation: marquee 25s linear infinite; }

.ticker__item { font-size: 28px; font-weight: 900; font-style: italic; color: #172635; padding: 0 40px; }

@keyframes marquee { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }

/* Services */
.services-section { padding: 80px 60px; background-color: #24353f; }

.section-title { text-align: center; font-size: 36px; font-style: italic; margin-bottom: 60px; }

.services-grid { max-width: 1200px; margin: 0 auto; display: flex; gap: 50px; }

.service-card { flex: 1; text-align: center; }

.circle-img-wrap { width: 200px; height: 200px; margin: 0 auto 30px auto; overflow: hidden; border-radius: 50%; border: 4px solid #3c525e; }

.circle-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* About Section */
.about-section { padding: 40px 20px; display: flex; justify-content: center; }

.about-card { max-width: 1000px; margin: 80px auto; display: flex; align-items: center; gap: 60px; padding: 40px; background: #2b3d47; border-radius: 8px; }

.about-text { flex: 1; }

.about-image { flex: 1; display: flex; justify-content: center; }

.about-image img { width: 350px; max-width: 100%; height: auto; border-radius: 12px; object-fit: cover; }

/* Contact Section */
.contact-section { padding: 100px 20px; display: flex; justify-content: center; }

.contact-box { width: 100%; max-width: 550px; background: #24353f; padding: 40px; border-radius: 6px; }

.b2b-form { display: flex; flex-direction: column; }

.b2b-form input, .b2b-form select, .b2b-form textarea { background: #3c525e; border: 1px solid #4f6b7a; padding: 12px; color: white; margin-bottom: 20px; border-radius: 4px; }

.btn-submit { background: #ffffff; color: #172635; border: none; padding: 15px; font-weight: 600; border-radius: 4px; cursor: pointer; }

/* Work With Us Button */
.services-footer { text-align: center; margin-top: 60px; }

.btn-cta-bottom { 
    display: inline-block; 
    background: #ffffff; 
    color: #172635; 
    padding: 20px 60px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-size: 20px; 
    font-weight: 800; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-cta-bottom:hover { 
    background: #e0e0e0; 
    transform: scale(1.05); 
}

/* Footer */
footer { text-align: center; padding: 40px; background: #172635; }

/* MOBILE RESPONSIVE FIXES */
@media (max-width: 968px) {
    .navbar { padding: 15px; flex-direction: column; text-align: center; }
    .nav-links { margin-top: 15px; gap: 10px; justify-content: center; flex-wrap: wrap; }
    .hero-container, .services-grid, .about-card { flex-direction: column; text-align: center; gap: 30px; }
    .hero-text-block h1 { font-size: 36px; }
    .about-card { margin: 20px auto; padding: 20px; }
}