/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #1d1d1b;
    --secondary-blue: #2d2e82;
    --accent-orange: #f29100;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #666;
    --white: #ffffff;
    --contact-purple: #8B5CF6;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--primary-black);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--secondary-blue);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--secondary-blue);
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-orange);
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-blue);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background-color: var(--accent-orange);
    color: var(--white);
}

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

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

/* Transparent Header with Scroll Behavior */
header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 20px 0;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

header.hidden {
    transform: translateY(-100%);
}

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

.logo {
    width: 12   0px;
    height: auto;
    z-index: 1001;
}

.logo-img {
    width: 100%;
    height: 120px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

header.scrolled .logo-img {
    filter: none;
}

/* Main Navigation with Dropdowns */
nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 30px;
    position: relative;
}

nav > ul > li > a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 10px 0;
    position: relative;
    color: var(--white);
}

header.scrolled nav > ul > li > a {
    color: var(--primary-black);
}

/* Harris Williams inspired hover effect */
nav > ul > li > a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
}

nav > ul > li > a:hover:after {
    width: 100%;
}

/* Dropdown Menu - Updated to dark translucent */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 20px;
}

nav li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.dropdown p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.dropdown .btn {
    padding: 8px 20px;
    font-size: 0.8rem;
    background-color: var(--accent-orange);
    border: none;
}

.dropdown .btn:hover {
    background-color: var(--white);
    color: var(--accent-orange);
}

.active {
    color: var(--accent-orange) !important;
}

.active:after {
    width: 100%;
}

.contact-link {
    color: var(--contact-purple) !important;
    font-weight: 600;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    z-index: 1001;
    transition: color 0.3s ease;
}

header.scrolled .mobile-menu-btn {
    color: lightgrey;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 200px 0 120px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-orange);
}

.two-column {
    display: flex;
    gap: 40px;
}

.two-column > div {
    flex: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 4px;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    color: var(--secondary-blue);
    margin-bottom: 15px;
}

.highlight-list {
    list-style: none;
}

.highlight-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.highlight-list li:before {
    content: '•';
    color: var(--accent-orange);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 4px;
    border-top: 4px solid var(--secondary-blue);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--secondary-blue);
    margin-bottom: 15px;
}

.case-study {
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 4px;
    transition: transform 0.3s;
}

.case-study:hover {
    transform: translateY(-5px);
}

.case-study h3 {
    color: var(--secondary-blue);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-us-card {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s;
}

.why-us-card:hover {
    transform: translateY(-5px);
}

.why-us-card h3 {
    color: var(--secondary-blue);
    margin-bottom: 15px;
}

.why-us-card i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

/* 3-Column Services & Expertise Grid */
.services-expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-expertise-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--secondary-blue);
}

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

.service-expertise-card i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.service-expertise-card h3 {
    color: var(--secondary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-expertise-card p {
    margin-bottom: 20px;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-size: 1rem;
}

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

/* Footer */
footer {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--medium-gray);
}

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

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Image Styles */
.section-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.leadership-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

/* Image Gallery Styles */
.gallery-section {
    margin: 60px 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 250px;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Industry Gallery */
.industry-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.industry-item {
    text-align: center;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 4px;
    transition: transform 0.3s;
}

.industry-item:hover {
    transform: translateY(-5px);
}

.industry-icon {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

/* Client Logos */
.client-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.client-logo {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Stats Section */
.stats-section {
    background-color: var(--secondary-blue);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-orange);
}

.stat-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quote Sections */
.quote-section {
    background-color: var(--light-gray);
    padding: 80px 0;
    text-align: center;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--secondary-blue);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote:before, .quote:after {
    content: '"';
    font-size: 4rem;
    color: var(--accent-orange);
    position: absolute;
    opacity: 0.3;
}

.quote:before {
    top: -30px;
    left: -50px;
}

.quote:after {
    bottom: -60px;
    right: -50px;
}

.quote-author {
    margin-top: 30px;
    font-weight: 600;
    color: var(--dark-gray);
}

/* Highlight Sections */
.highlight-section {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, #1a1a5e 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.highlight-section h2 {
    color: white;
}

.highlight-section .btn {
    background-color: var(--accent-orange);
    margin-top: 30px;
}

.highlight-section .btn:hover {
    background-color: white;
    color: var(--accent-orange);
}

/* New Styles for Updated Website */
.whatsapp-link {
    color: var(--contact-purple);
    font-weight: 600;
    text-decoration: none;
}

.whatsapp-link:hover {
    text-decoration: underline;
}

.consultation-note {
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.9;
}

.services-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    font-weight: 500;
}

.project-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    transform: translateY(0);
    transition: transform 0.3s;
}

.gallery-item:hover .project-description {
    transform: translateY(0);
}

.trusted-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.trusted-logo {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--secondary-blue);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Global Presence Cities */
.global-cities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

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

.city-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.city-card h4 {
    color: var(--secondary-blue);
    margin-bottom: 10px;
}

/* Updated CTA buttons */
.cta-talk {
    background: var(--contact-purple);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-talk:hover {
    background: #7C3AED;
    color: white;
}

/* Industry Images */
.industry-image-item {
    text-align: center;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 4px;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
    height: 200px;
}

.industry-image-item:hover {
    transform: translateY(-5px);
}

.industry-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.industry-image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .two-column {
        flex-direction: column;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .leadership-image {
        height: 300px;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .dropdown {
        width: 250px;
    }
    
    .services-expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .global-cities {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Header Fixes */
@media (max-width: 768px) {
    /* Mobile Header - Fixed height and logo positioning */
    header {
        padding: 30px 0; /* Increased padding */
        height: 180px; /* Increased height for more breathing room */
    }
    
    .logo {
        width: 90px;
        position: absolute;
        left: 20px;
        top: 60%;
        transform: translateY(-50%);
        z-index: 1002;
    }
    
    .logo-img {
        filter: brightness(0) invert(1);
        
    }
    
    header.scrolled .logo-img {
        filter: none;
    }
    
    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.8rem;
        z-index: 1002;
    }
    
    /* Mobile Menu - Fixed and scrollable with more top space */
    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(30, 30, 30, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 1000;
        padding: 130px 20px 20px; /* Increased top padding for logo space */
        overflow-y: auto;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav li {
        margin: 12px 0; /* Slightly reduced margin */
        width: 100%;
        text-align: center;
    }
    
    nav > ul > li > a {
        color: var(--white);
        font-size: 1.2rem;
        font-weight: 600;
        display: block;
        padding: 15px;
        width: 100%;
        transition: all 0.3s ease;
    }
    
    nav > ul > li > a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
    }
    
    /* Contact link - same style as other menu items */
    nav ul li:last-child {
        display: block;
        margin-top: 20px; /* Reduced top margin */
    }
    
    nav ul li:last-child a {
        background-color: transparent; /* Remove purple background */
        border-radius: 0; /* Remove border radius */
        padding: 15px; /* Same padding as other items */
        color: var(--white); /* Same text color */
        font-weight: 600; /* Same font weight */
    }
    
    nav ul li:last-child a:hover {
        background-color: rgba(255, 255, 255, 0.1); /* Same hover effect */
        border-radius: 5px;
    }
    
    /* Hide dropdowns in mobile */
    .dropdown {
        display: none;
    }
    
    /* Hero adjustments for mobile */
    .hero {
        padding: 130px 0 60px; /* Increased top padding to account for taller header */
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .industry-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .client-logos {
        gap: 20px;
    }
    
    .client-logo {
        height: 40px;
    }
    
    .quote:before {
        left: -20px;
    }
    
    .quote:after {
        right: -20px;
    }
    
    .services-expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .service-expertise-card {
        padding: 30px 20px;
    }
    
    .global-cities {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 90px;
    }
    
    header {
        height: 100px; /* Slightly taller than before */
    }
    
    .hero {
        padding: 130px 0 50px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .industry-gallery {
        grid-template-columns: 1fr;
    }
}
/* Global Presence Cities - Updated for 15+ countries */
.global-cities {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.city-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
}

.city-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.city-card h4 {
    color: var(--secondary-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Responsive adjustments for global cities */
@media (max-width: 1200px) {
    .global-cities {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

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

@media (max-width: 480px) {
    .global-cities {
        grid-template-columns: 1fr;
    }
    
    .city-card img {
        height: 180px;
    }
}