/* ====================================
   PREMIUM MARITIME DESIGN SYSTEM
   ==================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    /* Premium Maritime Palette */
    --navy-dark: #0a1628;
    --navy-mid: #1a2d4a;
    --ocean-blue: #0077b6;
    --ocean-light: #00a8e8;
    --steel-grey: #64748b;
    --slate-light: #e2e8f0;
    --white: #ffffff;
    --success-green: #22c55e;

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--navy-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* ====================================
   TYPOGRAPHY
   ==================================== */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 700;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ocean-blue);
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--navy-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--steel-grey);
    max-width: 600px;
    margin: 0 auto 50px;
}

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

/* ====================================
   BUTTONS
   ==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-primary {
    background: var(--ocean-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--navy-dark);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--navy-mid);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy-dark);
}

.btn-success {
    background: var(--success-green);
    color: var(--white);
}

.btn-success:hover {
    filter: brightness(1.1);
}

.btn-block {
    width: 100%;
}

/* ====================================
   HEADER
   ==================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 150px;
    width: auto;
    border-radius: 50%;
    border: 3px solid var(--ocean-blue);
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-weight: 400;
    color: var(--ocean-light);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 36px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--slate-light);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--ocean-light);
}

/* Dropdown Styles */
.nav-menu li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(15px);
    min-width: 240px;
    display: none;
    list-style: none;
    padding: 15px 0;
    border-radius: 0 0 12px 12px;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    border-top: 2px solid var(--ocean-blue);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown-menu li {
    width: 100%;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--slate-light);
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--ocean-light);
    padding-left: 30px;
}

.nav-menu li:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Dropdown Indicator */
.dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown > a::after {
    content: '▾';
    font-size: 10px;
    transition: var(--transition);
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

.hero-static {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a1628;
    overflow: hidden;
    padding-top: 180px; /* Offset for fixed header */
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    border: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(10, 22, 40, 0.4) 0%, rgba(10, 22, 40, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-text {
    max-width: 900px;
    margin: 0; /* Changed from margin: 0 auto to align left */
    text-align: left; /* Explicit left alignment */
}

/* Hero Text Hierarchy */
.hero-biggest {
    font-size: 60px; /* Updated to 60px */
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px; /* Tighter spacing for aesthetic flow */
    line-height: 1.2;
}

.hero-bigger {
    font-size: 40px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px; /* Balanced spacing */
    white-space: nowrap;
    letter-spacing: 1px;
}

.hero-big {
    font-size: 28px; /* Updated to 28px */
    font-weight: 500;
    color: var(--white);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.hero-emphasis {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
    justify-content: flex-start; /* Aligned left */
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.hero-scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 24px; opacity: 0.3; }
}

/* ====================================
   SECTION 2: TRUST STRIP
   ==================================== */
.trust-strip {
    background: var(--navy-dark);
    padding: 60px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.trust-item {
    color: var(--white);
}

.trust-icon {
    font-size: 36px;
    margin-bottom: 16px;
    animation: pulse 2s infinite;
}

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

.trust-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--ocean-light);
    margin-bottom: 8px;
}

.trust-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--steel-grey);
}

/* ====================================
   SECTION 3: ABOUT
   ==================================== */
.about-section {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    color: var(--steel-grey);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--navy-dark);
}

.about-image .image-placeholder {
    background: linear-gradient(135deg, var(--navy-mid), var(--ocean-blue));
    height: 450px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}

/* ====================================
   SECTION 4: PRODUCTS
   ==================================== */
.products-section {
    padding: 120px 0;
    background: #f8fafc;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    padding: 40px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-icon {
    font-size: 48px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.product-card:hover .product-icon {
    transform: scale(1.2);
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--navy-dark);
}

.product-card p {
    font-size: 14px;
    color: var(--steel-grey);
}

/* ====================================
   SECTION 5: PROCESS TIMELINE
   ==================================== */
.process-section {
    padding: 120px 0;
    background: var(--white);
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.timeline-line {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--slate-light);
    z-index: 0;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-dot {
    width: 50px;
    height: 50px;
    background: var(--ocean-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
    font-size: 18px;
    box-shadow: 0 0 0 8px rgba(0, 119, 182, 0.15);
    transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.15);
    box-shadow: 0 0 0 12px rgba(0, 119, 182, 0.2);
}

.timeline-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--navy-dark);
}

.timeline-content p {
    font-size: 13px;
    color: var(--steel-grey);
    max-width: 150px;
    margin: 0 auto;
}

/* ====================================
   SECTION 6: WHY CHOOSE US
   ==================================== */
.why-section {
    padding: 120px 0;
    background: #f8fafc;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.why-card:hover {
    border-top-color: var(--ocean-blue);
    transform: translateY(-4px);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--navy-dark);
}

.why-card p {
    font-size: 15px;
    color: var(--steel-grey);
}

/* ====================================
   SECTION 7: CTA
   ==================================== */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1494675823548-6b6ad33a4a79?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.9);
}

.cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 18px;
    color: var(--slate-light);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-form {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid var(--slate-light);
}

.form-group {
    margin-bottom: 24px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #f1f5f9;
    background: #f8fafc;
    border-radius: 10px;
    font-size: 16px;
    font-family: var(--font-main);
    color: var(--navy-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #94a3b8;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--navy-dark);
    color: var(--white);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--ocean-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 119, 182, 0.2);
}

/* Form Messages */
.form-messages {
    margin-bottom: 1.5rem;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 1px solid #27ae60;
}

.alert-error {
    background-color: rgba(192, 57, 43, 0.1);
    color: #c0392b;
    border: 1px solid #c0392b;
}

/* ====================================
   SECTION 7: CONTACT
   ==================================== */
.contact-section {
    padding: 120px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.detail-item {
    transition: var(--transition);
}

.detail-item:hover .detail-icon {
    transform: scale(1.1);
    background: var(--ocean-blue) !important;
    color: var(--white) !important;
}

/* ====================================
   FOOTER
   ==================================== */
.footer-premium {
    background: linear-gradient(180deg, var(--navy-dark) 0%, #06121d 100%);
    color: #cbd5e1;
    padding: 100px 0 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 24px;
    height: 2px;
    background-color: var(--ocean-blue);
}

.brand-col .logo-text {
    color: var(--white);
}

.footer-about {
    line-height: 1.8;
    color: #a0aec0;
    margin-bottom: 25px;
}

.footer-social-corporate {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Professional Footer Social Buttons */
.footer-social-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 220px;
    backdrop-filter: blur(5px);
}

.footer-social-premium svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.footer-social-premium:hover {
    background: var(--ocean-blue);
    border-color: var(--ocean-light);
    color: var(--white);
    transform: translateX(8px);
    box-shadow: 0 10px 20px rgba(0, 119, 182, 0.2);
}

.footer-social-premium:hover svg {
    transform: scale(1.1) rotate(-5deg);
}


.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--ocean-light);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-bar {
    background-color: #06121d;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #718096;
    font-size: 13px;
}

.bottom-links {
    display: flex;
    gap: 25px;
}

.bottom-links a {
    color: #718096;
    text-decoration: none;
    transition: var(--transition);
}

.bottom-links a:hover {
    color: var(--white);
}

/* ====================================
   PRODUCT SHOWCASE MARQUEE
   ==================================== */
.showcase-section {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
}

.marquee-container {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollMarquee 30s linear infinite;
}

.marquee-container:hover {
    animation-play-state: paused;
}

.showcase-img {
    height: 300px;
    width: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.showcase-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 2)); }
}

/* ====================================
   EQUIPMENT GRID
   ==================================== */
.equipment-grid-section {
    padding: 80px 0;
    background: var(--white);
}

.equipment-box-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.equipment-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: var(--white);
    border: 1px solid var(--slate-light);
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.equipment-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--ocean-blue);
    background: var(--navy-dark);
}

.equipment-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.equipment-box h4 {
    font-size: 1rem;
    color: var(--navy-dark);
    font-weight: 600;
    line-height: 1.4;
    transition: var(--transition);
}

.equipment-box:hover h4 {
    color: var(--white);
}

.equipment-box:hover .equipment-icon {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .equipment-box-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .equipment-box-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .equipment-box-grid { grid-template-columns: 1fr; }
}

/* ====================================
   ANIMATIONS
   ==================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.reveal-on-scroll.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1024px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu, .header-cta { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-biggest { font-size: 48px; }
    .hero-bigger { font-size: 24px; white-space: normal; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-biggest { font-size: 32px; }
}

/* ====================================
   BLOG GRID & CARDS (Horizontal)
   ==================================== */
.blog-list-horizontal {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.blog-card-horizontal {
    display: flex;
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    border: 1.5pt solid var(--navy-dark); /* 1.5pt solid border */
    align-items: center;
    margin-bottom: 30px;
}

.blog-card-img-container {
    flex: 0 0 320px; /* Scaled down 50% from 640px to fit container better */
    height: 240px; /* Scaled down 50% from 480px */
    overflow: hidden;
    border-right: 1.5pt solid var(--navy-dark);
}

.blog-card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-horizontal:hover .blog-card-img-container img {
    transform: scale(1.05);
}

.blog-card-text-container {
    flex: 1;
    padding: 30px;
}

.blog-card-text-container h3 {
    font-size: 1.4rem;
    color: var(--navy-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.read-more-link {
    color: var(--ocean-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .blog-card-horizontal {
        flex-direction: column;
        align-items: stretch;
    }
    .blog-card-img-container {
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        aspect-ratio: 640 / 480;
        border-right: none;
        border-bottom: 1.5pt solid var(--navy-dark);
    }
    .dropdown {
        display: block;
    }
    .dropdown-menu {
        display: none;
    }
}

/* ====================================
   ABOUT US IMAGES
   ==================================== */
.about-img-container {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-light);
}

.about-img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-img-fluid:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about-img-container {
        height: 300px;
    }
}
