@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #0b2b56; /* Deep navy blue from the image */
    --secondary-color: #ff8000; /* Bright orange from the image */
    --text-dark: #111111;
    --text-light: #444444;
    --bg-light: #f8f9fa; /* Light gray for alternating sections */
    --bg-white: #ffffff;
    --transition: all 0.3s ease-in-out;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 20px;
}

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

.top-social a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.top-social a:hover {
    color: var(--secondary-color);
}

/* Header & Nav */
header {
    background-color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 2%; /* Reduced side padding to give more room */
    max-width: 1550px; /* Increased max width */
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    height: 90px;
    flex-shrink: 0;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px; /* Restored more spacing between items */
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem; /* Slightly reduced font size */
    text-transform: uppercase;
    transition: var(--transition);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px; /* Space between icon and text */
    white-space: nowrap; /* Prevent text wrapping */
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-outline {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.contact-btn {
    background-color: var(--secondary-color);
    color: #ffffff !important;
    padding: 10px 25px !important;
}

.contact-btn:hover {
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(11, 43, 86, 0.8), rgba(11, 43, 86, 0.8)), url('hero_bg.png') center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--secondary-color);
}

.hero-content {
    max-width: 900px;
    color: #ffffff;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 800;
}

.hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 0;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-family: 'Open Sans', sans-serif;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Slider Section (Ultra Modern) */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 480px;
    background-color: #000;
    overflow: hidden;
    padding: 0;
}

.hero-slider-section::before,
.hero-slider-section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #0056b3; /* Vibrant logo blue color */
    z-index: 10;
}

.hero-slider-section::before {
    top: 0;
}

.hero-slider-section::after {
    bottom: 0;
}

.hero-slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.hero-slide.active .hero-bg-img {
    transform: scale(1);
}

.hero-quote-panel {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}

.hero-quote-left {
    left: 0;
    padding: 0 69% 0 5%;
    background: linear-gradient(to right, rgba(11, 43, 86, 0.95) 0%, rgba(11, 43, 86, 0.85) 33.33%, rgba(11, 43, 86, 0) 45%);
    transform: translateX(-50px);
}

.hero-quote-right {
    right: 0;
    padding: 0 5% 0 69%;
    background: linear-gradient(to left, rgba(11, 43, 86, 0.95) 0%, rgba(11, 43, 86, 0.85) 33.33%, rgba(11, 43, 86, 0) 45%);
    transform: translateX(50px);
}

.hero-slide.active .hero-quote-left,
.hero-slide.active .hero-quote-right {
    opacity: 1;
    transform: translateX(0);
}

.hero-quote-panel h3 {
    font-size: 2.2rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 25px;
    font-weight: 700;
    color: #ffffff !important;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-quote-panel p {
    font-size: 1.3rem;
    color: var(--secondary-color) !important;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-content-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    /* Removed heavy gradient to show more image */
    background: transparent;
}

.hero-slide-glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 20px 25px;
    border-radius: 12px;
    max-width: 480px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transform: translateY(40px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s;
}

.hero-slide.active .hero-slide-glass-card {
    transform: translateY(0);
    opacity: 1;
}

.hero-eyebrow {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-slide-glass-card h2 {
    font-size: 2rem;
    color: #1a2b4c;
    margin-bottom: 10px;
    line-height: 1.1;
    font-weight: 800;
}

.hero-slide-glass-card h2 span {
    color: var(--secondary-color);
}

.hero-slide-glass-card p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.4;
}

.hero-features {
    list-style: none;
    margin-bottom: 25px;
}

.hero-features li {
    font-size: 0.9rem;
    color: #1a2b4c;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.hero-features li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 2px solid rgba(0,0,0,0.1);
    padding-left: 20px;
}

.hero-stat i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.hero-stat h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.hero-stat span {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Arrows (Modern Pill) */
.slider-controls {
    position: absolute;
    bottom: 40px;
    right: 5%;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-arrow {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #1a2b4c;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.slider-arrow:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
    transform: scale(1.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@media (max-width: 992px) {
    .hero-slide {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    .hero-slide-content {
        max-width: 100%;
    }
    .hero-slide-content h1 {
        font-size: 2.5rem;
    }
    .hero-features li {
        justify-content: center;
    }
    .prev-arrow {
        left: 0;
    }
    .next-arrow {
        right: 0;
    }
    .hero-quote-left, .hero-quote-right {
        padding: 0 10%;
        background: rgba(11, 43, 86, 0.75);
        align-items: center;
        text-align: center;
    }
    .hero-quote-panel h3 {
        font-size: 1.6rem;
    }
    .hero-quote-panel p {
        font-size: 1.1rem;
    }
}

/* Sections */
.section {
    padding: 80px 5%;
}

.section-alt {
    background-color: var(--bg-light);
}

/* Premium About Section */
.about-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-premium-text {
    padding-right: 30px;
}

.about-eyebrow {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.about-premium-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.about-premium-title span {
    color: var(--secondary-color);
}

.about-premium-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-premium-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-premium-image-wrapper img.main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.isi-badge-overlay {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    border: 3px solid #f0f4f8;
}

.isi-badge-overlay img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.isi-badge-overlay span {
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .about-premium {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-premium-text {
        padding-right: 0;
    }
    .isi-badge-overlay {
        bottom: 10px;
        left: 10px;
    }
}

.section-dark {
    background-color: var(--primary-color);
    color: #ffffff;
}

.section-dark .section-title {
    color: #ffffff;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
}

.section-title span {
    color: var(--secondary-color);
}

/* Banner Title (Like "OUR CORE SERVICES" in image) */
.banner-title {
    background-color: var(--secondary-color);
    color: #ffffff;
    display: inline-block;
    padding: 10px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
    margin: 0 auto 40px auto;
}

/* Grid & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-top: 5px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    text-align: center;
    border-radius: 6px;
}

.card:hover {
    transform: translateY(-8px);
    border-top-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 3.5rem;
    color: var(--primary-color); /* Icon color matches the image */
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Split Content */
.split-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.split-content > div {
    flex: 1;
}

.split-content img {
    width: 100%;
    height: auto;
    border-bottom: 5px solid var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Core Services Strip */
.services-strip {
    background-color: #ffffff;
    padding: 60px 5% 40px;
    text-align: center;
    position: relative;
    border-top: none;
    margin-top: 0;
}

.banner-overlap {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 10;
}

.services-strip-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 0;
}

.service-item {
    flex: 1;
    min-width: 180px;
    padding: 30px 15px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    cursor: default;
}

.service-item:hover {
    background-color: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    z-index: 5;
}

.service-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #e0e0e0;
    transition: opacity 0.3s ease;
}

.service-item:hover::after {
    opacity: 0;
}

.service-item-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-item:hover .service-item-icon {
    transform: scale(1.15);
    color: var(--secondary-color);
}

.service-item p {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Methodology Section */
.methodology-section {
    background-color: var(--bg-light);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.methodology-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,128,0,0.1) 0%, rgba(255,128,0,0) 70%);
    z-index: 0;
}

.methodology-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11,43,86,0.08) 0%, rgba(11,43,86,0) 70%);
    z-index: 0;
}

.methodology-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.methodology-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 15px;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.methodology-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.methodology-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.methodology-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.methodology-card:hover::before {
    transform: scaleX(1);
}

.methodology-card-text {
    text-align: center;
    margin-bottom: 30px;
}

.methodology-card-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.methodology-card-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.methodology-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 50%;
    padding: 15px;
    background: #ffffff;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.03), 0 15px 30px rgba(0,0,0,0.08);
    transition: all 0.5s ease;
}

.methodology-card:hover .methodology-image-wrapper {
    transform: rotate(5deg) scale(1.05);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.03), 0 20px 40px rgba(11,43,86,0.15);
}

.methodology-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    display: block;
}

/* Footer */
footer {
    background-color: #040d1a;
    color: #ffffff;
    padding: 60px 5% 0px;
    border-top: 5px solid var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

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

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

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

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    background-color: #02050a;
    text-align: center;
    padding: 20px 5%;
    color: #a0a0a0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 992px) {
    /* Top Bar */
    .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .top-contact {
        flex-direction: column;
        gap: 5px;
    }
    
    /* Navbar & Mobile Menu */
    .menu-toggle {
        display: block;
    }
    .navbar {
        flex-wrap: wrap;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--bg-white);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    }
    .nav-links.active {
        max-height: 800px;
        padding: 20px 0;
        overflow-y: auto;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    
    /* Mobile Dropdown Fix */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background-color: var(--bg-light);
        transform: none !important;
        width: 100%;
        margin-top: 10px;
        display: none;
        padding: 0;
    }
    .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .dropdown-menu li a {
        padding: 10px 15px !important;
    }

    /* Hero Text & Layout */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .logo {
        height: 60px;
    }
    .navbar {
        flex-wrap: nowrap;
    }
    .hero-slide-glass-card {
        padding: 30px;
    }
    .hero-slide-glass-card h1 {
        font-size: 2.5rem !important;
    }
    
    /* Layout */
    .split-content {
        flex-direction: column;
    }
    .split-content > div {
        width: 100%;
    }
}

/* Premium Layout Mobile Fixes */
@media (max-width: 992px) {
    /* Ensure inline grids collapse */
    .grid, .timeline-container, .standards-container, .standards-container > div:last-child, .flagship-section > div, .framework-section > div:last-child, .methodology-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .flagship-section > div > div:first-child, .standards-container > div:first-child {
        text-align: center;
    }
    .flagship-section ul, .standards-container ul {
        text-align: left;
    }
    .flagship-bg-shape {
        display: none !important;
    }
    
    /* Reduce massive typography */
    h1 {
        font-size: 3rem !important;
        line-height: 1.2 !important;
    }
    h2 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }
    .service-page-hero h1, .compliance-hero h1 {
        font-size: 3.5rem !important;
    }
    
    /* Reduce paddings */
    .service-page-hero, .compliance-hero {
        padding: 100px 5% 60px !important;
    }
    .flagship-section, .premium-grid-section, .process-section, .bottom-anchors, .standards-section, .framework-section, .commitment-section, .section {
        padding: 60px 5% !important;
    }
    
    /* Adjust badges */
    .compliance-hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    /* Home page specific */
    .services-strip-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .service-item {
        width: 100%;
        border-right: none;
        padding: 20px 10px;
    }
    .container > div {
        flex: 1 1 100% !important;
    }
    .value-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem !important;
    }
    h2 {
        font-size: 1.8rem !important;
    }
    .service-page-hero h1, .compliance-hero h1 {
        font-size: 2.5rem !important;
    }
    .logo {
        height: 50px;
    }
    .hero-slide-glass-card {
        padding: 20px;
        margin-top: 20px;
    }
    .hero-slide-glass-card h1 {
        font-size: 2rem !important;
    }
    .hero-slide-glass-card p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .hero-stat {
        border-left: none;
        padding-left: 0;
    }
    .services-strip-container {
        grid-template-columns: 1fr;
    }
    .timeline-number {
        font-size: 3rem;
    }
    /* Fix nested grids */
    .flagship-section .grid {
        grid-template-columns: 1fr !important;
    }
    .standards-container .grid {
        grid-template-columns: 1fr !important;
    }
    .compliance-hero::after, .service-page-hero::after {
        width: 100% !important;
        opacity: 0.1 !important;
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: var(--bg-white);
    min-width: 260px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    border-top: 4px solid var(--secondary-color);
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li {
    margin: 0;
}
.dropdown-menu li a {
    color: var(--primary-color) !important;
    padding: 12px 25px !important;
    display: block;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.dropdown-menu li:last-child a {
    border-bottom: none;
}
.dropdown-menu li a:hover {
    background-color: var(--bg-light) !important;
    color: var(--secondary-color) !important;
    padding-left: 32px !important;
}
