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

body {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #000;
    line-height: 1.6;
}

/* Typography System */
h1 {
    font-size: clamp(2.5rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

h3 {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.1px;
}

p {
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    line-height: 1.7;
    font-weight: 400;
}

/* Header - Refined & Balanced */
header {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    padding: 2rem 2rem 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 140px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(239, 176, 52, 0.2));
}

header h1 {
    text-align: center;
    margin: 0.5rem 0 1rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

header nav {
    display: flex;
    justify-content: center;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    padding: 0;
}

header nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    min-width: 150px;        
    text-align: center;
}

header nav a:hover {
    background: #efb034;
    border-color: #efb034;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 176, 52, 0.3);
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Shared Card Styles */
.industries, .about-us, .clients, .who-we-are, .how-we-work, .why-choose, .experience, .values, .vision {
    padding: 2.5rem 2rem;
    margin: 2rem auto;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-left: 4px solid #efb034;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.industries:hover, .about-us:hover, .clients:hover, .experience:hover, .values:hover, .vision:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Hero Section - Full Width Background Image */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 800px;
    padding: 4rem 2rem;
    margin: 2rem auto;
    background-image: url('../images/figure_1_hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

/* Dark overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h2 {
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 800;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out;
}

.hero-content p {
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

/* Grid Layouts for Image + Content Sections */
.industries, .about-us, .clients, .experience, .vision, .values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* About Page - Section 1 (about-us): Image Left, Content Right */
.about-us .about-image {
    grid-column: 1;
    grid-row: 1;
}

.about-us .about-content {
    grid-column: 2;
    grid-row: 1;
}

/* About Page - Section 2 (experience): Content Left, Image Right */
.experience .experience-content {
    grid-column: 1;
    grid-row: 1;
}

.experience .experience-image {
    grid-column: 2;
    grid-row: 1;
}

/* About Page - Section 3 (values): Image Left, Text Right */
.values .values-image {
    grid-column: 1;
    grid-row: 1;
}

.values .values-text {
    grid-column: 2;
    grid-row: 1;
}

/* About Page - Section 4 (vision): Content Left, Image Right */
.vision .vision-content {
    grid-column: 1;
    grid-row: 1;
}

.vision .vision-image {
    grid-column: 2;
    grid-row: 1;
}

/* Home Page - Clients Section: Content Left, Image Right */
#home .clients .clients-text {
    grid-column: 1;
    grid-row: 1;
}

#home .clients .clients-image {
    grid-column: 2;
    grid-row: 1;
}

/* Services Page - Industries Section: Text Left, Image Right */
.industries .industries-text {
    grid-column: 1;
    grid-row: 1;
}

.industries .industries-image {
    grid-column: 2;
    grid-row: 1;
}

.who-we-are, .how-we-work, .why-choose {
    display: grid;
    grid-template-columns: 1fr;
}

/* Dark Background Sections */
.what-we-do, .our-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 2.5rem;
    margin: 2rem auto;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.what-we-do h2, .our-services h2 {
    text-align: center;
    margin: 0;
    color: #efb034;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.what-we-do > p, .our-services > p {
    color: #e5e5e5;
    max-width: 1220px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.0625rem;
}

.what-we-do > p {
    max-width: 800px;
}

/* Fade and Rise Animation */
@keyframes fadeInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Section Headings */
.about-us h2, .experience-content h2, .vision-content h2, .values-text h2,
.who-we-are h2, .our-team h2, .how-we-work h2, .why-choose h2,
.clients-text h2, .industries-text h2 {
    color: #000;
    margin-bottom: 1rem;
}

.who-we-are h2, .our-team h2, .how-we-work h2, .why-choose h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.who-we-are h2::after, .why-choose h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #efb034 0%, #d99a2a 100%);
    border-radius: 2px;
}

.clients-text h2, .industries-text h2 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.industries-text h2 {
    padding-left: 0;
}

/* Paragraphs */
.who-we-are p, .about-content p, .vision-content p {
    max-width: 1220px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.who-we-are p:last-child, .about-content p:last-child, .vision-content p:last-child {
    margin-bottom: 0;
}

.experience-content p, .how-we-work p {
    line-height: 1.7;
    margin-bottom: 0;
    color: #333;
}

.experience-content p {
    margin-top: 0.5rem;
}

.how-we-work p {
    padding-left: 1rem;
    margin-top: 0;
}

.clients-text p, .industries-text p {
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

/* Images */
.clients-image img, .industries-image img, .about-image img, .experience-image img, .vision-image img, .values-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Two Column Section */
.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0.5rem 0;
    margin: 2rem auto;
}

.two-column-section article {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-left: 4px solid #efb034;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.two-column-section h3 {
    margin-bottom: 1rem;
    color: #000;
    font-weight: 700;
}

.two-column-section p {
    margin-bottom: 1rem;
    color: #333;
}

/* Lists */
.two-column-section ul, .experience-content ul, .how-we-work ul,
.clients-text ul, .industries-text ul, .service-item ul, .values-text ul {
    list-style: none;
    padding: 0;
}

.how-we-work ul {
    margin-bottom: 1rem;
    margin-top: 0;
}

.industries-text ul {
    padding-left: 0;
}

/* List Items with Bullets */
.two-column-section li, .experience-content li, .clients-text li, 
.industries-text li, .service-item li, .values-text li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #333;
    line-height: 1.6;
}

.experience-content li {
    padding-left: 1.5rem;
}

.clients-text li, .industries-text li, .values-text li {
    color: #333;
    font-weight: 500;
}

.how-we-work li {
    padding-left: 2.5rem;
    position: relative;
    color: #333;
}

.two-column-section li::before, .experience-content li::before,
.clients-text li::before, .industries-text li::before,
.service-item li::before, .services-list > li::before, .how-we-work li::before, .values-text li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #efb034;
    font-weight: bold;
    font-size: 1.2rem;
}

.how-we-work li::before {
    left: 1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.service-item h4 {
    margin-bottom: 1rem;
    color: #efb034;
    font-weight: 700;
    font-size: 1.25rem;
}

.service-item p {
    color: #333;
    margin-bottom: 1rem;
}

.service-item strong {
    color: #efb034;
    font-weight: 700;
}

/* Why Choose Section */
.why-choose {
    gap: 1.5rem;
}

.why-choose article {
    max-width: 900px;
    margin: 0 auto 1rem;
    background: #f8f9fa;
    border-left: 5px solid #efb034;
    padding: 1.75rem 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.why-choose article:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.why-choose article:last-child {
    margin-bottom: 0;
}

.why-choose article h3, .how-we-work h3 {
    margin-bottom: 0.75rem;
    color: #000;
    font-weight: 700;
}

.how-we-work h3 {
    margin-left: 1rem;
    margin-top: 1.5rem;
}

.why-choose article p {
    color: #333;
    line-height: 1.8;
    margin: 0;
}

/* Services List */
.services-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.services-list li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #e5e5e5;
    line-height: 1.7;
}

.sub-list {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

.sub-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #d0d0d0;
    font-size: 0.9375rem;
}

.sub-list li::before {
    content: "◦";
    position: absolute;
    left: 0;
    color: #efb034;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Our Team */
.our-team {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 2rem;
}

.our-team h2 {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.our-team h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #efb034 0%, #d99a2a 100%);
    border-radius: 2px;
}

.our-team > p {
    max-width: 900px;
    text-align: center;
    margin: 0 auto 3rem;
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
}

.our-team article {
    max-width: 100%;
    background-color: #000;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin: 0 auto 1.5rem;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-team article:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.our-team article:last-child {
    margin-bottom: 0;
}

.our-team article section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    padding: 2rem;
    text-align: center;
    border-bottom: 3px solid #efb034;
}

.our-team article h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.5px;
}

.our-team article h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #efb034;
    margin: 0;
    letter-spacing: 0.3px;
}

.our-team article p {
    text-align: center;
    padding: 1.5rem 2rem;
    color: #333;
    font-size: 0.9375rem;
    line-height: 1.8;
    background-color: #fff;
    margin: 0;
}

.our-team article p:first-of-type {
    padding-top: 2rem;
}

.our-team article p:last-of-type {
    padding-bottom: 2rem;
}

/* CTA Button */
.cta-button {
    text-align: center;
    padding: 3rem 0;
}

.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, #efb034 0%, #d99a2a 100%);
    color: #000;
    padding: 1rem 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.0625rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(239, 176, 52, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #d99a2a 0%, #efb034 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(239, 176, 52, 0.4);
}

/* Footer - Refined & Balanced */
footer {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.footer-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo img {
    height: 110px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(239, 176, 52, 0.2));
}

.footer-cta .btn-gold {
    padding: 0.875rem 2.5rem;
    font-size: 0.9375rem;
}

.footer-content {
    display: flex;
    justify-content: center;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-info p {
    margin-bottom: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #e5e5e5;
}

.footer-info i {
    color: #efb034;
    font-size: 1.125rem;
    width: 20px;
}

.footer-info a {
    color: #e5e5e5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #efb034;
}

.footer-nav {
    display: flex;
    justify-content: center;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    min-width: 150px;     
    text-align: center;
}

.footer-nav a:hover {
    background: #efb034;
    border-color: #efb034;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 176, 52, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.875rem;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 1.5rem 1rem;
    }

    .header-container {
        gap: 1.25rem;
    }

    .logo img {
        height: 100px;
    }

    header h1 {
        font-size: 1.5rem;
        margin: 0.5rem 0;
    }

    header nav ul,
    .footer-nav ul {
        flex-direction: column;
        gap: 1rem;
        width: 40%;
    }

    header nav a {
        display: block;
        text-align: center;
        padding: 0.875rem 1.5rem;
    }

    .hero, .clients, .about-us, .industries, .experience, .vision, .values {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 2rem;
    }

    .hero-content h2 {
        font-size: 1.75rem;
    }

    .hero-image img {
        max-height: 300px;
    }

    .two-column-section, .services-grid {
        grid-template-columns: 1fr;
    }

    .what-we-do, .our-services {
        padding: 2rem 1.5rem;
    }

    .clients .clients-image,
    .industries .industries-image,
    .about-us .about-image,
    .experience .experience-image,
    .vision .vision-image,
    .values .values-image {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }
    
    .clients .clients-text,
    .industries .industries-text,
    .about-us .about-content,
    .experience .experience-content,
    .vision .vision-content,
    .values .values-text {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }

    .footer-container {
        gap: 2rem;
    }

    .footer-logo img {
        height: 90px;
    }

    .footer-nav a {
        display: block;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1025px) {
    main {
        padding: 0 2rem;
    }
}