/* ============================================
   Color Scheme
   ============================================ */
:root {
    --navy: #0a1628;
    --gold: #c8a951;
    --white: #ffffff;
    --dark-blue: #132744;
    --light-gray: #f5f5f5;
    --text-dark: #333333;
}

/* ============================================
   Reset & Global Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background-color: var(--navy);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: var(--gold);
}

@media (max-width: 768px) {
    .contact-info {
        gap: 15px;
        font-size: 12px;
    }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    max-width: 200px;
    object-fit: contain;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--navy);
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .mobile-toggle {
        display: flex;
    }
}

/* ============================================
   Hero Carousel
   ============================================ */
.hero-carousel {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-carousel .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 22, 40, 0.6);
    z-index: 1;
}

.hero-carousel .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-carousel h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-carousel p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-dots .dot.active {
    background-color: var(--gold);
    transform: scale(1.2);
}

.hero-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Legacy .hero support for inner pages using static hero banners */
.hero {
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
}

.hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 22, 40, 0.6);
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-cta {
    background-color: var(--gold);
    color: var(--navy);
    margin-top: 20px;
}

.btn-cta:hover {
    background-color: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

@media (max-width: 768px) {
    .hero-carousel h1,
    .hero h1 {
        font-size: 32px;
    }

    .hero-carousel p,
    .hero p {
        font-size: 16px;
    }

    .hero-carousel,
    .hero {
        height: 400px;
    }
}

/* ============================================
   Who We Are Section
   ============================================ */
.who-we-are {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.who-we-are h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--navy);
}

.who-we-are p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: justify;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .who-we-are h2 {
        font-size: 28px;
    }
}

/* ============================================
   Mission & Vision Section
   ============================================ */
.mission-vision {
    background-color: var(--navy);
    color: var(--white);
    padding: 80px 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mission-card,
.vision-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mission-card img,
.vision-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.mission-card h3,
.vision-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--gold);
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-card img,
    .vision-card img {
        height: 250px;
    }
}

/* ============================================
   Core Values Section
   ============================================ */
.core-values {
    padding: 80px 0;
    background-color: var(--white);
}

.core-values h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 50px;
    text-align: center;
}

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

.value-card {
    background-color: var(--light-gray);
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background-color: var(--navy);
    color: var(--white);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 18px;
    color: var(--navy);
}

.value-card:hover h3 {
    color: var(--gold);
}

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

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .core-values h2 {
        font-size: 28px;
    }
}

/* ============================================
   Quality Objectives Section
   ============================================ */
.quality-objectives {
    padding: 80px 0;
    background-color: var(--dark-blue);
    color: var(--white);
}

.quality-objectives h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--white);
}

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

.objective-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.objective-card:hover {
    background-color: rgba(200, 169, 81, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.objective-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.objective-card h3 {
    font-size: 18px;
    color: var(--white);
}

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

@media (max-width: 768px) {
    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .quality-objectives h2 {
        font-size: 28px;
    }
}

/* ============================================
   Services Overview Section
   ============================================ */
.services-overview {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.services-overview h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 50px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 56px;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-overview h2 {
        font-size: 28px;
    }
}

/* ============================================
   CTA Banner Section
   ============================================ */
.cta-banner {
    background-color: var(--navy);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--gold);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 40px 0;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    object-fit: contain;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    color: #cccccc;
    text-align: justify;
}

.footer-explore h4,
.footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--gold);
    text-transform: uppercase;
}

.footer-explore ul {
    list-style: none;
}

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

.footer-explore a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-explore a:hover {
    color: var(--gold);
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #cccccc;
}

.footer-contact strong {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #999999;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about p,
    .footer-contact p,
    .footer-explore a {
        font-size: 13px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

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

.bg-navy {
    background-color: var(--navy);
}

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

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* ============================================
   Page Banner (Inner Pages)
   ============================================ */
.page-banner {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.page-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 22, 40, 0.8);
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 15px;
    color: #cccccc;
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .page-banner {
        padding: 60px 0;
    }

    .banner-content h1 {
        font-size: 28px;
    }
}

/* ============================================
   Welcome / About Section
   ============================================ */
.welcome-section {
    padding: 80px 0;
    background-color: var(--white);
}

.welcome-section h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 25px;
}

.welcome-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 900px;
    text-align: justify;
}

@media (max-width: 768px) {
    .welcome-section h2 {
        font-size: 28px;
    }
}

/* ============================================
   Management Team Section
   ============================================ */
.management-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.management-section h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 20px;
    text-align: center;
}

.management-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

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

.team-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card h3 {
    font-size: 20px;
    color: var(--navy);
    margin: 20px 15px 5px;
}

.team-card p {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    margin: 0 15px 20px;
}

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

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .management-section h2 {
        font-size: 28px;
    }
}

/* ============================================
   Services Section (Full Page)
   ============================================ */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.services-section .section-header {
    margin-bottom: 50px;
}

.services-section .section-header h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 15px;
}

.services-section .section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-dark);
}

.services-section .services-grid {
    grid-template-columns: repeat(3, 1fr);
}

.services-section .service-card {
    text-align: left;
    padding: 0;
    overflow: hidden;
}

.services-section .service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.services-section .service-card .section-content {
    padding: 25px;
}

.services-section .service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.services-section .service-card p {
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .services-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section .services-grid {
        grid-template-columns: 1fr;
    }

    .services-section .section-header h2 {
        font-size: 28px;
    }
}

/* ============================================
   Technology Section
   ============================================ */
.technology-section {
    padding: 80px 0;
    background-color: var(--white);
}

.technology-intro {
    text-align: center;
    margin-bottom: 50px;
}

.technology-intro h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 15px;
}

.technology-intro p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-dark);
}

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

.tech-card {
    display: flex;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.tech-image {
    width: 200px;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

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

.tech-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-card h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
}

.tech-card p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .tech-card {
        flex-direction: column;
    }

    .tech-image {
        width: 100%;
        height: 200px;
    }

    .technology-intro h2 {
        font-size: 28px;
    }
}

/* ============================================
   Policy / Safety Section
   ============================================ */
.policy-content {
    padding: 80px 0;
    background-color: var(--white);
}

.policy-content .container {
    max-width: 900px;
}

.policy-content h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 20px;
}

.policy-content h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 15px;
    margin-top: 40px;
}

.policy-content h3:first-child {
    margin-top: 0;
}

.policy-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: justify;
}

.policy-image {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
}

.policy-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .policy-content h2 {
        font-size: 28px;
    }

    .policy-content h3 {
        font-size: 20px;
    }
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-section h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 50px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background-color: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-card i {
    font-size: 24px;
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 5px;
}

.contact-card p,
.contact-card a {
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.6;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-form-section h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 10px;
}

.contact-form-section > p {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    cursor: pointer;
}

.contact-form .required {
    color: red;
    font-size: 12px;
}

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

    .contact-section h2 {
        font-size: 28px;
    }
}

/* ============================================
   Map Section
   ============================================ */
.map-section {
    padding: 0 0 80px;
    background-color: var(--white);
}

.map-section h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 20px;
    text-align: center;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ============================================
   Team Profile Pages
   ============================================ */
.team-profile {
    padding: 80px 0;
    background-color: var(--white);
}

.team-profile-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.team-profile-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.team-profile-info h2 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 8px;
}

.team-role {
    font-size: 18px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 25px;
    display: block;
}

.team-bio {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: justify;
}

.team-bio p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .team-profile-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-profile-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .team-profile-info h2 {
        font-size: 26px;
        text-align: center;
    }

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

/* ============================================
   Service Detail Pages
   ============================================ */
.service-detail {
    padding: 80px 0;
    background-color: var(--white);
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-content h2 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: justify;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.service-detail-content ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.service-detail-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold);
}

@media (max-width: 768px) {
    .service-detail-content h2 {
        font-size: 26px;
    }
}

/* ============================================
   Technology Detail Pages
   ============================================ */
.tech-detail {
    padding: 80px 0;
    background-color: var(--white);
}

.tech-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.tech-detail-content h2 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 25px;
}

.tech-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: justify;
}

.tech-detail-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.tech-detail-content ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.tech-detail-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold);
}

@media (max-width: 768px) {
    .tech-detail-content h2 {
        font-size: 26px;
    }
}
