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

:root {
    --emerald-green: #10b981;
    --emerald-dark: #059669;
    --emerald-light: #34d399;
    --black: #111827;
    --dark-grey: #1f2937;
    --light-grey: #6b7280;
    --white: #ffffff;
    --accent-blue: #3b82f6;
    --accent-red: #ef4444;
    --accent-gold: #f59e0b;
    --text-color: #111827;
    --text-muted: #6b7280;
    --light-bg: #f9fafb;
    --gradient-emerald: linear-gradient(135deg, var(--emerald-green), var(--emerald-dark));
    --gradient-dark: linear-gradient(135deg, var(--black), var(--dark-grey));
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.6rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient-emerald);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--black);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(0px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.nav-logo a {
    display: block;
    text-decoration: none;
    outline: none;
}

.nav-logo img {
    height: 55px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo a:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 6px rgba(16, 185, 129, 0.4));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.nav-link:hover {
    color: var(--emerald-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Contact Button */
.nav-contact {
    display: flex;
    justify-content: flex-end;
}

.contact-btn {
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.contact-btn:hover {
    background: var(--emerald-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.contact-btn i {
    font-size: 1rem;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-grey);
    min-width: 200px;
    list-style: none;
    padding: 1rem 0;
    border-radius: 5px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

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

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
    background: var(--emerald-green);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    .bar {
        width: 25px;
        height: 3px;
        background: var(--white);
        margin: 3px 0;
        transition: 0.3s ease;
        border-radius: 2px;
        pointer-events: none;
    }

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(16, 185, 129, 0.3));
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(16, 185, 129, 0.3));
    z-index: -1;
}

.slide-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 120px);
    left: -60px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    padding: 0.7rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    z-index: 20;
    position: relative;
}

.slider-btn:hover {
    background: var(--emerald-green);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

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

.dot.active {
    background: var(--emerald-green);
    transform: scale(1.2);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--emerald-green);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--light-grey);
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--dark-grey);
    position: relative;
    overflow: hidden;
}

.about-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    color: var(--emerald-green);
    margin-top: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
    font-size: 1.1rem;
}

.features-list {
    list-style: none;
    margin-top: 1rem;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.features-list i {
    color: var(--emerald-green);
    margin-right: 1rem;
    font-size: 1.2rem;
}



/* Chairman Section */
.chairman {
    padding: 6rem 0;
    background: var(--gradient-emerald);
}

.chairman-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.chairman-image .image-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.chairman-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.chairman-text h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.chairman-text h3 {
    color: var(--emerald-light);
    margin-bottom: 2rem;
}

.chairman-text blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--white);
    border-left: 4px solid var(--white);
    padding-left: 2rem;
    margin: 2rem 0;
}

/* Team Section */
.team {
    padding: 6rem 0;
    background: var(--black);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--dark-grey);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    color: var(--emerald-green);
    margin-bottom: 0.5rem;
}

.position {
    color: var(--emerald-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.location {
    display: flex;
    align-items: center;
    color: var(--light-grey);
    margin-bottom: 1rem;
}

.location i {
    margin-right: 0.5rem;
    color: var(--emerald-green);
}

.bio {
    color: var(--light-grey);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--dark-grey);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-category {
    background: var(--black);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--emerald-green);
}

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

.service-category h3 {
    color: var(--emerald-green);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.service-category h3 i {
    margin-right: 1rem;
    font-size: 1.5rem;
}

.service-category ul {
    list-style: none;
}

.service-category li {
    padding: 0.5rem 0;
    color: var(--light-grey);
    border-bottom: 1px solid rgba(107, 114, 128, 0.2);
}

.service-category li:last-child {
    border-bottom: none;
}

/* Industries Section */
.industries {
    padding: 6rem 0;
    background: var(--black);
}

.industries-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.industries-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    width: 100%;
}

.industry-card {
    background: var(--dark-grey);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(16, 185, 129, 0.1);
    width: calc(33.333% - 1.33rem);
    flex-shrink: 0;
    flex-basis: calc(33.333% - 1.33rem);
}

.industry-card:hover {
    transform: translateY(-10px);
    border-color: var(--emerald-green);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.industry-card:hover .industry-icon i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--emerald-green);
}

.industry-icon i {
    font-size: 3rem;
    color: var(--emerald-green);
}

.industry-card h3 {
    color: var(--emerald-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.industry-card p {
    color: var(--light-grey);
    line-height: 1.6;
}

/* Industries Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    background: rgba(16, 185, 129, 0.9);
    border: none;
    color: var(--white);
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--emerald-green);
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-grey);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--emerald-green);
    transform: scale(1.2);
}

/* Projects Section */
.projects {
    padding: 6rem 0;
    background: var(--dark-grey);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--black);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.project-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    color: var(--emerald-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.project-category {
    color: var(--emerald-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.project-description {
    color: var(--light-grey);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-stats {
    display: flex;
    align-items: center;
    color: var(--light-grey);
    font-size: 0.9rem;
}

.project-stats i {
    margin-right: 0.5rem;
    color: var(--emerald-green);
}

/* Milestones Timeline */
.milestones {
    padding: 6rem 0;
    background: var(--black);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--emerald-green);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    text-align: right;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
    text-align: left;
    padding-left: 2rem;
}

.timeline-content {
    background: var(--dark-grey);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--emerald-green);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -60px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -60px;
}

.timeline-content h3 {
    color: var(--emerald-green);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: var(--emerald-light);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--light-grey);
}

/* Offices Section */
.offices {
    padding: 6rem 0;
    background: var(--dark-grey);
}

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

.map-container {
    background: var(--black);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    height: 500px;
}

.world-map {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2072&q=80') center/cover;
    border-radius: 5px;
    position: relative;
}

.office-pin {
    position: absolute;
    color: var(--emerald-green);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.office-pin:hover {
    color: var(--emerald-light);
    transform: scale(1.2);
}

.office-pin span {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.office-pin:hover span {
    opacity: 1;
}

.offices-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

.office-item {
    background: var(--black);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-left: 4px solid var(--emerald-green);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
}

.office-item:nth-child(1) { animation-delay: 0.1s; }
.office-item:nth-child(2) { animation-delay: 0.2s; }
.office-item:nth-child(3) { animation-delay: 0.3s; }
.office-item:nth-child(4) { animation-delay: 0.4s; }
.office-item:nth-child(5) { animation-delay: 0.5s; }
.office-item:nth-child(6) { animation-delay: 0.6s; }

.office-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-emerald);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.office-item:hover::before {
    transform: scaleX(1);
}

.office-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
    border-color: var(--emerald-green);
}

.office-item h3 {
    color: var(--emerald-green);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.office-item h3 i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.office-item p {
    color: var(--light-grey);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.office-item p strong {
    color: var(--white);
    font-weight: 600;
}
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 2rem;
    color: var(--emerald-green);
    width: 60px;
    text-align: center;
}

.contact-item h3 {
    color: var(--emerald-green);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--light-grey);
    margin: 0;
}

.contact-form {
    background: var(--dark-grey);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--black);
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    color: var(--white);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--emerald-green);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-grey);
}

/* Quick Overview Section */
.quick-overview {
    padding: 80px 0;
    background: var(--light-bg);
    color: var(--black);
}

.quick-overview .section-header h2 {
    color: var(--emerald-green);
}

.quick-overview .section-header p {
    color: var(--text-muted);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--emerald-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Map in Overview Section */
.overview-image .map-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.overview-image .world-map {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #87CEEB 0%, #4682B4 50%, #2E8B57 50%, #228B22 100%);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.overview-image .world-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* North America */
        radial-gradient(ellipse 80px 60px at 25% 35%, #2F4F2F 30%, transparent 30%),
        radial-gradient(ellipse 60px 40px at 20% 45%, #2F4F2F 30%, transparent 30%),
        /* South America */
        radial-gradient(ellipse 40px 80px at 30% 65%, #2F4F2F 30%, transparent 30%),
        /* Europe */
        radial-gradient(ellipse 50px 40px at 48% 32%, #2F4F2F 30%, transparent 30%),
        /* Africa */
        radial-gradient(ellipse 60px 100px at 52% 55%, #2F4F2F 30%, transparent 30%),
        /* Asia */
        radial-gradient(ellipse 120px 80px at 70% 35%, #2F4F2F 30%, transparent 30%),
        /* Australia */
        radial-gradient(ellipse 50px 30px at 78% 72%, #2F4F2F 30%, transparent 30%),
        /* Grid lines for longitude/latitude effect */
        linear-gradient(90deg, transparent 19%, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.1) 21%, transparent 22%),
        linear-gradient(90deg, transparent 39%, rgba(255,255,255,0.1) 40%, rgba(255,255,255,0.1) 41%, transparent 42%),
        linear-gradient(90deg, transparent 59%, rgba(255,255,255,0.1) 60%, rgba(255,255,255,0.1) 61%, transparent 62%),
        linear-gradient(90deg, transparent 79%, rgba(255,255,255,0.1) 80%, rgba(255,255,255,0.1) 81%, transparent 82%),
        linear-gradient(0deg, transparent 24%, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.1) 26%, transparent 27%),
        linear-gradient(0deg, transparent 49%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 51%, transparent 52%),
        linear-gradient(0deg, transparent 74%, rgba(255,255,255,0.1) 75%, rgba(255,255,255,0.1) 76%, transparent 77%);
    border-radius: 15px;
}

.overview-image .world-map::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
    border-radius: 15px;
}

.overview-image .office-pin {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--emerald-green);
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5);
    z-index: 10;
}

.overview-image .office-pin:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5);
}

.overview-image .office-pin span {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.overview-image .office-pin span::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--black);
}

.overview-image .office-pin:hover span {
    opacity: 1;
    visibility: visible;
    top: -40px;
}

/* Featured Services */
.featured-services {
    padding: 80px 0;
    background: white;
    color: var(--black);
}

.featured-services .section-header h2 {
    color: var(--emerald-green);
}

.featured-services .section-header p {
    color: var(--text-muted);
}

.services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-preview-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--emerald-green), #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-preview-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-preview-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.learn-more {
    color: var(--emerald-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #10b981;
}

.services-view-all {
    text-align: center;
    margin-top: 3rem;
}

.services-view-all .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.025em;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.services-view-all .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.services-view-all .btn i {
    font-size: 1.2rem;
}

/* Featured Projects */
.featured-projects {
    padding: 80px 0;
    background: var(--light-bg);
    color: var(--black);
}

.featured-projects .section-header h2 {
    color: var(--emerald-green);
}

.featured-projects .section-header p {
    color: var(--text-muted);
}

.projects-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-preview-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.project-preview-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-preview-content {
    padding: 1.5rem;
}

.project-preview-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.project-preview-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.view-project {
    color: var(--emerald-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-project:hover {
    color: #10b981;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--emerald-green);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--light-grey);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--emerald-green);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--emerald-green);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--emerald-light);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--light-grey);
    color: var(--light-grey);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-emerald);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.scroll-to-top.show {
    display: flex;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .services-preview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .projects-preview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-preview-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .nav-container {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
    }

    .nav-logo img {
        height: 35px;
        max-width: 120px;
    }

    .nav-contact {
        order: 2;
    }

    .contact-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        gap: 0.3rem;
    }

    .hamburger {
        display: flex !important;
        order: 3;
        z-index: 1001;
        cursor: pointer;
        padding: 8px;
        border-radius: 4px;
        transition: background-color 0.3s ease;
        position: relative;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 70px !important;
        flex-direction: column !important;
        background-color: rgba(17, 24, 39, 0.98) !important;
        width: 100% !important;
        text-align: center !important;
        transition: 0.3s ease !important;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4) !important;
        padding: 2rem 0 !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        z-index: 999 !important;
        display: flex !important;
    }

    .nav-menu.active {
        left: 0 !important;
        display: flex !important;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin-top: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    .chairman-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offices-content {
        padding: 0 1rem;
    }
    
    .offices-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .industries-slider-container {
        padding: 0 1rem;
    }
    
    .industry-card {
        width: calc(50% - 1rem);
        flex-basis: calc(50% - 1rem);
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
        padding-left: 3rem;
        padding-right: 1rem;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -40px;
        right: auto;
    }

    .slider-controls {
        padding: 0 1rem;
    }

    .slider-btn {
        padding: 0.8rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Industries Page Responsive */
    .page-header {
        padding: 6rem 0 3rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .industries-overview,
    .services-by-industry,
    .global-reach {
        padding: 4rem 0;
    }

    .industries-overview .section-header h2,
    .services-by-industry .section-header h2,
    .global-reach .section-header h2 {
        font-size: 2.5rem;
    }

    .industries-slider-container {
        padding: 0 1rem;
    }

    .industries-slider .industry-card {
        width: calc(50% - 1rem);
        flex-basis: calc(50% - 1rem);
        padding: 2.5rem 2rem;
        min-height: 400px;
    }

    .industries-slider .industry-card h3 {
        font-size: 1.2rem;
        min-height: 3rem;
    }

    .industries-slider .industry-card .industry-icon {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .services-grid .service-category {
        padding: 2rem;
    }

    .services-grid .service-category h3 {
        font-size: 1.2rem;
    }

    .reach-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .reach-stats .stat-item {
        padding: 1.5rem;
    }

    .reach-stats .stat-number {
        font-size: 3rem;
    }

    .reach-stats .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .offices-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .office-item {
        padding: 1.5rem;
    }
    
    .office-item h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .office-item p {
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .industry-card {
        width: 100%;
        flex-basis: 100%;
    }
    
    .industries-slider-container .slider-controls {
        padding: 0 0.5rem;
    }
    
    .nav-logo img {
        height: 30px;
        max-width: 120px;
    }
    
    .nav-logo a:hover img {
        transform: scale(1.03);
    }

    .industries-slider-container .slider-btn {
        width: 40px;
        height: 40px;
        padding: 0.8rem;
    }

    /* Industries Page Mobile Responsive */
    .page-header {
        padding: 5rem 0 2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .page-header p {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .industries-overview,
    .services-by-industry,
    .global-reach {
        padding: 3rem 0;
    }

    .industries-overview .section-header h2,
    .services-by-industry .section-header h2,
    .global-reach .section-header h2 {
        font-size: 2rem;
    }

    .industries-overview .section-header p,
    .services-by-industry .section-header p,
    .global-reach .section-header p {
        font-size: 1rem;
    }

    .industries-slider .industry-card {
        width: 100%;
        flex-basis: 100%;
        padding: 2rem 1.5rem;
        min-height: 350px;
    }

    .industries-slider .industry-card h3 {
        font-size: 1.1rem;
        min-height: 2.5rem;
    }

    .industries-slider .industry-card .industry-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .industries-slider .industry-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .industries-slider .industry-card .read-more-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid .service-category {
        padding: 1.5rem;
    }

    .services-grid .service-category h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .services-grid .service-category li {
        font-size: 0.95rem;
        padding: 0.4rem 0;
    }

    .reach-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reach-stats .stat-item {
        padding: 1.5rem;
    }

    .reach-stats .stat-number {
        font-size: 2.5rem;
    }

    .reach-stats .stat-label {
        font-size: 0.9rem;
    }
} 

/* Page Header */
.page-header {
    background: var(--gradient-dark);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(31, 41, 55, 0.8));
    z-index: 1;
}

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

.page-header h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--emerald-light);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.025em;
    margin-bottom: 0;
}

/* Industries Overview Section */
.industries-overview {
    padding: 6rem 0;
    background: var(--black);
}

.industries-overview .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.industries-overview .section-header h2 {
    font-size: 3rem;
    color: var(--emerald-green);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.industries-overview .section-header p {
    font-size: 1.2rem;
    color: var(--light-grey);
    max-width: 600px;
    margin: 0 auto;
}

.industries-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 0;
    overflow: hidden;
    padding: 0 60px;
}

.industries-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    width: calc(740% / 3); /* 7 cards fitting in 3-card display space */
}

.industries-slider .industry-card {
    background: var(--dark-grey);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    width: calc((150% - 12rem) / 7); /* (total width - gaps) / 7 cards */
    min-width: calc((100% - 12rem) / 7);
    flex-shrink: 0;
    flex-basis: calc((100% - 12rem) / 7);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .industries-slider {
        width: calc(700% / 2); /* Tablet: 7 cards fitting in 2-card display space */
    }
    
    .industries-slider .industry-card {
        width: calc((100% - 10rem) / 7); /* (total width - 5 gaps * 2rem) / 7 cards */
        min-width: calc((100% - 10rem) / 7);
        flex-basis: calc((100% - 10rem) / 7);
        padding: 2rem 1.5rem;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .industries-slider-container {
        padding: 0 40px;
    }
    
    .industries-slider {
        width: calc(700%); /* Mobile: 7 cards fitting in 1-card display space */
        gap: 1.5rem;
    }
    
    .industries-slider .industry-card {
        width: calc((100% - 9rem) / 7); /* (total width - 6 gaps * 1.5rem) / 7 cards */
        min-width: calc((100% - 9rem) / 7);
        flex-basis: calc((100% - 9rem) / 7);
        padding: 2rem 1rem;
        min-height: 350px;
    }
    
    .industries-slider .industry-card h3 {
        font-size: 1.2rem;
        min-height: 3rem;
    }
    
    .industries-slider .industry-card .industry-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
}

.industries-slider .industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-emerald);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.industries-slider .industry-card:hover::before {
    transform: scaleX(1);
}

.industries-slider .industry-card:hover {
    transform: translateY(-15px);
    border-color: var(--emerald-green);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.3);
}

.industries-slider .industry-card .industry-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--emerald-green);
    transition: all 0.3s ease;
}

.industries-slider .industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(5deg);
}

.industries-slider .industry-card h3 {
    color: var(--emerald-green);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 700;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industries-slider .industry-card p {
    color: var(--light-grey);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 1rem;
}

.industries-slider .industry-card .read-more-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--gradient-emerald);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    align-self: center;
}

.industries-slider .industry-card .read-more-btn:hover {
    background: transparent;
    border-color: var(--emerald-green);
    color: var(--emerald-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

/* Services by Industry Section */
.services-by-industry {
    padding: 6rem 0;
    background: var(--dark-grey);
}

.services-by-industry .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-by-industry .section-header h2 {
    font-size: 3rem;
    color: var(--emerald-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-by-industry .section-header p {
    font-size: 1.2rem;
    color: var(--light-grey);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.services-grid .service-category {
    background: var(--black);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden;
}

.services-grid .service-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-emerald);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.services-grid .service-category:hover::before {
    transform: scaleX(1);
}

.services-grid .service-category:hover {
    transform: translateY(-10px);
    border-color: var(--emerald-green);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.services-grid .service-category h3 {
    color: var(--emerald-green);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.services-grid .service-category h3 i {
    font-size: 1.5rem;
    color: var(--emerald-green);
}

.services-grid .service-category ul {
    list-style: none;
    padding: 0;
}

.services-grid .service-category li {
    color: var(--light-grey);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(107, 114, 128, 0.2);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.5rem;
}

.services-grid .service-category li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--emerald-green);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.services-grid .service-category li:hover {
    color: var(--white);
    padding-left: 2rem;
}

.services-grid .service-category li:hover::before {
    transform: translateX(5px);
}

.services-grid .service-category li:last-child {
    border-bottom: none;
}

/* Global Reach Section */
.global-reach {
    padding: 6rem 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.global-reach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(31, 41, 55, 0.1));
    z-index: 1;
}

.global-reach .container {
    position: relative;
    z-index: 2;
}

.global-reach .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.global-reach .section-header h2 {
    font-size: 3rem;
    color: var(--emerald-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.global-reach .section-header p {
    font-size: 1.2rem;
    color: var(--light-grey);
    max-width: 600px;
    margin: 0 auto;
}

.reach-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.reach-stats .stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--dark-grey);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden;
}

.reach-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-emerald);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.reach-stats .stat-item:hover::before {
    transform: scaleX(1);
}

.reach-stats .stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--emerald-green);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.reach-stats .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--emerald-green);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.reach-stats .stat-label {
    font-size: 1.1rem;
    color: var(--light-grey);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
} 

/* Enhanced Industries Page Styles */
.industries-overview .section-header,
.services-by-industry .section-header,
.global-reach .section-header {
    position: relative;
    margin-bottom: 5rem;
}

.industries-overview .section-header::after,
.services-by-industry .section-header::after,
.global-reach .section-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-emerald);
    border-radius: 2px;
}

.industries-grid .industry-card {
    position: relative;
    background: linear-gradient(145deg, var(--dark-grey), var(--black));
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.industries-grid .industry-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    pointer-events: none;
}

.industries-grid .industry-card:hover::after {
    opacity: 1;
}

.services-grid .service-category {
    background: linear-gradient(145deg, var(--black), var(--dark-grey));
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.services-grid .service-category li {
    position: relative;
    transition: all 0.3s ease;
}

.services-grid .service-category li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--emerald-green);
    transition: width 0.3s ease;
}

.services-grid .service-category li:hover::after {
    width: 100%;
}

.reach-stats .stat-item {
    background: linear-gradient(145deg, var(--dark-grey), var(--black));
    border: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden;
}

.reach-stats .stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
    pointer-events: none;
}

.reach-stats .stat-item:hover::after {
    opacity: 1;
}

/* Animation for industry cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.industries-grid .industry-card,
.services-grid .service-category,
.reach-stats .stat-item {
    animation: fadeInUp 0.6s ease forwards;
}

.industries-grid .industry-card:nth-child(1) { animation-delay: 0.1s; }
.industries-grid .industry-card:nth-child(2) { animation-delay: 0.2s; }
.industries-grid .industry-card:nth-child(3) { animation-delay: 0.3s; }
.industries-grid .industry-card:nth-child(4) { animation-delay: 0.4s; }
.industries-grid .industry-card:nth-child(5) { animation-delay: 0.5s; }
.industries-grid .industry-card:nth-child(6) { animation-delay: 0.6s; }
.industries-grid .industry-card:nth-child(7) { animation-delay: 0.7s; }

.services-grid .service-category:nth-child(1) { animation-delay: 0.1s; }
.services-grid .service-category:nth-child(2) { animation-delay: 0.2s; }
.services-grid .service-category:nth-child(3) { animation-delay: 0.3s; }
.services-grid .service-category:nth-child(4) { animation-delay: 0.4s; }

.reach-stats .stat-item:nth-child(1) { animation-delay: 0.1s; }
.reach-stats .stat-item:nth-child(2) { animation-delay: 0.2s; }
.reach-stats .stat-item:nth-child(3) { animation-delay: 0.3s; }
.reach-stats .stat-item:nth-child(4) { animation-delay: 0.4s; }

/* Enhanced button styles */
.industries-grid .industry-card .read-more-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.industries-grid .industry-card .read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.industries-grid .industry-card .read-more-btn:hover::before {
    left: 100%;
}

/* Enhanced icon animations */
.industries-grid .industry-card .industry-icon {
    position: relative;
}

.industries-grid .industry-card .industry-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: -1;
}

.industries-grid .industry-card:hover .industry-icon::before {
    width: 80px;
    height: 80px;
} 

/* Company Profile Sliver */
.company-profile-sliver {
    background: var(--gradient-emerald);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.company-profile-sliver::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(5, 150, 105, 0.9));
    z-index: 1;
}

.company-profile-sliver::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

.company-profile-sliver .container {
    position: relative;
    z-index: 3;
}

.sliver-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.sliver-text h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sliver-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.5;
}

.sliver-button .btn {
    background: var(--white);
    color: var(--emerald-green);
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.sliver-button .btn:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.sliver-button .btn i {
    font-size: 1.1rem;
}

/* Responsive Design for Sliver */
@media (max-width: 768px) {
    .company-profile-sliver {
        padding: 1.5rem 0;
    }
    
    .sliver-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .sliver-text h3 {
        font-size: 1.5rem;
    }
    
    .sliver-text p {
        font-size: 1rem;
    }
    
    .sliver-button .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .company-profile-sliver {
        padding: 1rem 0;
    }
    
    .sliver-text h3 {
        font-size: 1.3rem;
    }
    
    .sliver-text p {
        font-size: 0.95rem;
    }
    
    .sliver-button .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
} 

/* Global Reach Home Section */
.global-reach-home {
    padding: 5rem 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.global-reach-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(31, 41, 55, 0.1));
    z-index: 1;
}

.global-reach-home .container {
    position: relative;
    z-index: 2;
}

.global-reach-home .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.global-reach-home .section-header h2 {
    font-size: 3rem;
    color: var(--emerald-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.global-reach-home .section-header p {
    font-size: 1.2rem;
    color: var(--light-grey);
    max-width: 600px;
    margin: 0 auto;
}

.reach-stats-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item-home {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--dark-grey);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-item-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-emerald);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item-home:hover::before {
    transform: scaleX(1);
}

.stat-item-home:hover {
    transform: translateY(-15px);
    border-color: var(--emerald-green);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.3);
}

.stat-item-home .stat-icon {
    font-size: 2rem;
    color: var(--emerald-green);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.stat-item-home:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-item-home .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--emerald-green);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.stat-item-home .stat-label {
    font-size: 0.9rem;
    color: var(--light-grey);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animation for stat items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item-home {
    animation: fadeInUp 0.6s ease forwards;
}

.stat-item-home:nth-child(1) { animation-delay: 0.1s; }
.stat-item-home:nth-child(2) { animation-delay: 0.2s; }
.stat-item-home:nth-child(3) { animation-delay: 0.3s; }
.stat-item-home:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design for Global Reach Home */
@media (max-width: 768px) {
    .global-reach-home {
        padding: 4rem 0;
    }

    .global-reach-home .section-header h2 {
        font-size: 2.5rem;
    }

    .global-reach-home .section-header p {
        font-size: 1.1rem;
    }

    .reach-stats-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-item-home {
        padding: 1.5rem 1rem;
    }

    .stat-item-home .stat-number {
        font-size: 2rem;
    }

    .stat-item-home .stat-label {
        font-size: 0.8rem;
    }

    .stat-item-home .stat-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .global-reach-home {
        padding: 3rem 0;
    }

    .global-reach-home .section-header h2 {
        font-size: 2rem;
    }

    .global-reach-home .section-header p {
        font-size: 1rem;
    }

    .reach-stats-home {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item-home {
        padding: 1.5rem 1rem;
    }

    .stat-item-home .stat-number {
        font-size: 1.8rem;
    }

    .stat-item-home .stat-label {
        font-size: 0.7rem;
    }

    .stat-item-home .stat-icon {
        font-size: 1.3rem;
    }
}

/* World Map Container */
.world-map-container {
    width: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

/* Project Categories Grid */
.project-categories {
    padding: 5rem 0;
    background: var(--black);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-item {
    background: var(--dark-grey);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: visible;
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-emerald);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-item:hover::before {
    transform: scaleX(1);
}

.category-item:hover {
    transform: translateY(-10px);
    border-color: var(--emerald-green);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--emerald-green);
    transition: all 0.3s ease;
}

.category-item:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-item h3 {
    color: var(--emerald-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.category-item p {
    color: var(--light-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    word-break: normal;
    white-space: normal;
}

.category-stats {
    margin-top: 1.5rem;
}

.category-stats span {
    display: block;
    color: var(--emerald-green);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-stats p {
    color: var(--light-grey);
    font-size: 0.9rem;
    margin: 0;
    white-space: normal;
    word-wrap: normal;
    line-height: 1.4;
}

.category-stats i {
    color: var(--emerald-green);
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .category-item {
        padding: 2rem;
    }
} 