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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: #ffffff;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #64748b;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 15px;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    font-family: 'Poppins', sans-serif;
}

.nav-logo i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(30, 64, 175, 0.8) 100%);
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    color: white;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

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

/* Floating Cards */
.floating-cards {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: #fbbf24;
}

.floating-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

.card-1 {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.card-2 {
    top: 150px;
    right: 80px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 100px;
    left: 100px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    font-family: 'Poppins', sans-serif;
}

.nav-logo i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(30, 64, 175, 0.8) 100%);
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    color: white;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

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

/* Floating Cards */
.floating-cards {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: #fbbf24;
}

.floating-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

.card-1 {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.card-2 {
    top: 150px;
    right: 80px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 100px;
    left: 100px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-color);
}

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

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gradient);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

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

.company-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateX(10px);
}

.value-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.value-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.value-item p {
    color: var(--text-color);
    margin: 0;
}

/* Modern Core Values Section */
.company-values-modern {
    margin: 4rem 0;
    padding: 2rem 0;
    background: linear-gradient(90deg, #f8fafc 60%, #e3fcec 100%);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.values-header {
    text-align: center;
    margin-bottom: 2rem;
}
.values-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0099f7;
}
.values-header p {
    font-size: 1.1rem;
    color: #444;
}
.values-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    justify-items: center;
}
.value-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 2rem 1.2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 2rem;
}
.value-card h3 {
    margin: 0.5rem 0 0.75rem 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0099f7;
}
.value-card p {
    font-size: 1rem;
    color: #444;
}

/* Upgraded Core Values Section */
.values-grid-upgraded {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.value-card-upgraded {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.2s;
}
.value-card-upgraded:hover {
    transform: translateY(-8px) scale(1.03);
}
.value-icon-upgraded {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 2rem;
}
.value-card-upgraded h3 {
    margin: 0.5rem 0 0.75rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0099f7;
}
.value-card-upgraded p {
    font-size: 1rem;
    color: #444;
}

/* Office Locations */
.offices-section {
    margin-top: 4rem;
}

.offices-section h3 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
    font-family: 'Poppins', sans-serif;
}

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

.office-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.office-card:hover {
    transform: translateY(-10px);
}

.office-header {
    padding: 1.5rem;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.office-header i {
    font-size: 1.5rem;
}

.office-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
}

.office-details {
    padding: 1.5rem;
}

.office-details p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.office-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

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

.service-card.main-service {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.service-card.full-width {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.service-header {
    padding: 2rem;
    background: var(--light-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-header h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

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

.service-list {
    padding: 2rem;
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.service-list i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--light-color);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
}

.gallery-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.gallery-content i {
    font-size: 2rem;
}

/* Certifications Section */
.certifications {
    padding: 100px 0;
    background: white;
}

.cert-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

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

.cert-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.cert-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cert-icon i {
    font-size: 2rem;
    color: white;
}

.cert-card h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.cert-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

.contact.form-container {
    display: flex;
    justify-content: center;
}

.form-wrapper {
    width: 100%;
    max-width: 800px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Modern Header */
.modern-header {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.modern-header-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    z-index: 1;
}
.modern-header-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    filter: brightness(0.7);
    border-radius: 0 0 32px 32px;
}
.modern-header-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(0,153,247,0.6) 0%, rgba(241,23,18,0.4) 100%);
    z-index: 2;
    border-radius: 0 0 32px 32px;
}
.modern-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 60px;
}
.modern-header-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.modern-header-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.modern-header-content .breadcrumb {
    font-size: 1rem;
    opacity: 0.85;
}
.modern-header-content .breadcrumb a {
    color: #fff;
    text-decoration: underline;
}

/* Modern Services Grid */
.modern-services {
    padding: 4rem 0 2rem 0;
    background: #f8fafc;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.service-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e3fcec;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}
.service-card-img {
    width: 100%;
    max-width: 220px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.service-card h3 {
    margin: 0.5rem 0 0.75rem 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0099f7;
}
.service-card p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0.5rem;
}
.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Modern CTA */
.modern-cta {
    background: linear-gradient(90deg, #0099f7 0%, #f11712 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    border-radius: 24px;
    margin: 3rem 0 0 0;
}
.modern-cta .cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.modern-cta .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}
.modern-cta .cta-buttons .btn {
    display: inline-block;
    margin: 0 8px;
    padding: 10px 24px;
    border-radius: 24px;
    background: #fff;
    color: #0099f7;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}
.modern-cta .cta-buttons .btn-primary {
    background: #0099f7;
    color: #fff;
}
.modern-cta .cta-buttons .btn-secondary {
    background: #f11712;
    color: #fff;
}
.modern-cta .cta-buttons .btn:hover {
    background: #f8fafc;
    color: #0099f7;
}

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

/* Dark Mode Styles */
.dark-mode {
    --primary-color: #3b82f6;
    --secondary-color: #1e40af;
    --text-dark: #f1f5f9;
    --text-light: #cbd5e1;
    --text-color: #e2e8f0;
    --bg-light: #1e293b;
    --bg-white: #0f172a;
    --border-color: #334155;
}

.dark-mode body {
    background-color: #0f172a;
    color: #e2e8f0;
}

.dark-mode .navbar {
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid #334155;
}

.dark-mode .modern-services {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.dark-mode .service-card {
    background: #1e293b;
    border: 1px solid #334155;
    color: #e2e8f0;
}

.dark-mode .about-stats .stat-card {
    background: #1e293b;
    border: 1px solid #334155;
}

.dark-mode .company-story {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.dark-mode .footer {
    background: #0f172a;
    border-top: 1px solid #334155;
}

/* Navigation Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dark-mode-toggle {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.dark-mode-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(180deg);
}

.dark-mode .dark-mode-toggle {
    border-color: #fbbf24;
    color: #fbbf24;
}

.dark-mode .dark-mode-toggle:hover {
    background: #fbbf24;
    color: #0f172a;
}

/* Enhanced Button Styles */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

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

.dark-mode .btn-secondary {
    color: #3b82f6;
    border-color: #3b82f6;
}

.dark-mode .btn-secondary:hover {
    background: #3b82f6;
    color: white;
}

/* Map Section Styles */
.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.map-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-tabs {
    display: flex;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.map-tab {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.map-tab:hover {
    background: #e2e8f0;
    color: var(--primary-color);
}

.map-tab.active {
    background: white;
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.map-wrapper {
    position: relative;
    min-height: 500px;
}

.map-embed {
    display: none;
    position: relative;
}

.map-embed.active {
    display: block;
}

.map-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 0;
}

.map-info {
    padding: 30px;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.map-info h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-info h4 i {
    color: var(--primary-color);
}

.map-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.map-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.map-actions .btn {
    flex: 1;
    min-width: 150px;
    justify-content: center;
}

/* Dark Mode Map Styles */
.dark-mode .map-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.dark-mode .map-container {
    background: #1e293b;
    border: 1px solid #334155;
}

.dark-mode .map-tabs {
    background: #0f172a;
    border-bottom: 1px solid #334155;
}

.dark-mode .map-tab {
    color: #94a3b8;
}

.dark-mode .map-tab:hover {
    background: #334155;
    color: #3b82f6;
}

.dark-mode .map-tab.active {
    background: #1e293b;
    color: #3b82f6;
    border-bottom-color: #3b82f6;
}

.dark-mode .map-info {
    background: #1e293b;
    border-top: 1px solid #334155;
}

.dark-mode .map-info h4 {
    color: #f1f5f9;
}

.dark-mode .map-info p {
    color: #cbd5e1;
}

/* Map Responsive Design */
@media (max-width: 768px) {
    .map-tabs {
        flex-direction: column;
    }
    
    .map-tab {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .map-info {
        padding: 20px;
    }
    
    .map-actions {
        flex-direction: column;
    }
    
    .map-actions .btn {
        width: 100%;
    }
}

/* Modern About Page Styles */
.about-hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-background-about {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    z-index: 2;
}

.hero-content-about {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 80px 0;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-modern {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.highlight-text {
    color: #fbbf24;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.hero-keywords {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.keyword {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.keyword:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 48px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
}

.stat-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fbbf24;
}

.stat-content p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

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

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 2px solid transparent;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary-modern:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive Design for About Hero */
@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-card {
        padding: 24px 16px;
    }
    
    .hero-buttons-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-modern {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-keywords {
        justify-content: center;
        gap: 12px;
    }
    
    .keyword {
        font-size: 0.9rem;
        padding: 6px 16px;
    }
}

/* Modern Story Section Styles */
.story-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.story-section-modern::before {
    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="50" cy="50" r="1" fill="%23cbd5e1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.story-header-modern {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.story-title-modern {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.2;
}

.story-subtitle-modern {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.story-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.story-content-modern {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-narrative {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.story-highlight h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.story-text-large {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 24px;
}

.highlight-accent {
    color: #3b82f6;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-mission {
    padding-top: 24px;
    border-top: 2px solid #e2e8f0;
}

.story-mission h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.story-mission p {
    color: #64748b;
    line-height: 1.6;
}

/* Achievement Timeline */
.achievement-timeline {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.achievement-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 80px;
    bottom: 80px;
    width: 2px;
    background: linear-gradient(to bottom, #3b82f6, #1d4ed8);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.5;
}

/* Story Visual Modern */
.story-visual-modern {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.visual-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.visual-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.visual-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.story-image-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.visual-card-modern:hover .story-image-modern {
    transform: scale(1.05);
}

.image-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(29, 78, 216, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.visual-card-modern:hover .image-overlay-modern {
    opacity: 1;
}

.overlay-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.certifications-modern {
    padding: 30px;
}

.certifications-modern h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    text-align: center;
}

.cert-badges-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f1f5f9;
    border-radius: 12px;
    font-weight: 600;
    color: #475569;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.cert-badge i {
    color: #3b82f6;
}

/* Principles Grid Modern */
.principles-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.principle-card-modern {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.principle-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: all 0.3s ease;
}

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

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

.principle-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.principle-icon-modern.innovation {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

.principle-icon-modern.partnership {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.principle-icon-modern.quality {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.principle-card-modern:hover .principle-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.principle-card-modern h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.principle-card-modern p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Design for Story Section */
@media (max-width: 1024px) {
    .story-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .principles-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .story-section-modern {
        padding: 60px 0;
    }
    
    .story-title-modern {
        font-size: 2.2rem;
    }
    
    .story-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .story-narrative,
    .achievement-timeline {
        padding: 30px 20px;
    }
    
    .achievement-timeline::before {
        left: 45px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .visual-image-container {
        height: 250px;
    }
    
    .certifications-modern {
        padding: 20px;
    }
    
    .cert-badges-modern {
        grid-template-columns: 1fr;
    }
    
    .principle-card-modern {
        padding: 30px 20px;
    }
}

/* Ultra-Modern Services Page Styles */
.services-hero-ultra-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.hero-background-services {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image-services {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.9) 0%, 
        rgba(30, 41, 59, 0.8) 50%, 
        rgba(51, 65, 85, 0.7) 100%);
    z-index: 2;
}

.hero-content-services {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 100px 0;
}

.hero-badge-services {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
}

.hero-title-services {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-services {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    color: #cbd5e1;
}

.service-categories-preview {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.category-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-pill:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.hero-actions-services {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.breadcrumb-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb-modern a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-modern a:hover {
    color: #3b82f6;
}

.breadcrumb-modern i {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Floating Stats */
.floating-stats {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 4;
}

.stat-bubble {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    color: white;
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-bubble:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-bubble h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fbbf24;
}

.stat-bubble p {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Services Introduction Modern */
.services-intro-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.intro-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-badge-intro {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-text-large {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 32px;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.highlight-item i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.highlight-item span {
    font-weight: 600;
    color: #1e293b;
}

.visual-card-intro {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.visual-card-intro:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.intro-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.visual-card-intro:hover .intro-image {
    transform: scale(1.05);
}

.visual-overlay-intro {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: white;
}

.overlay-content-intro h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.overlay-content-intro p {
    opacity: 0.9;
    line-height: 1.5;
}

/* Services Grid Ultra Modern */
.services-grid-ultra-modern {
    padding: 100px 0;
    background: white;
    position: relative;
}

.services-header-modern {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge-services {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.services-header-modern h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.2;
}

.services-header-modern p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
}

/* Enhanced Service Cards */
.service-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: all 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.service-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-card ul li {
    padding: 8px 0;
    color: #475569;
    position: relative;
    padding-left: 24px;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.service-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

/* Responsive Design for Services */
@media (max-width: 1200px) {
    .floating-stats {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 40px;
    }
    
    .intro-grid-modern {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .services-hero-ultra-modern {
        min-height: 80vh;
    }
    
    .hero-title-services {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-services {
        font-size: 1.1rem;
    }
    
    .service-categories-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .category-pill {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .hero-actions-services {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .floating-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-bubble {
        min-width: 100px;
        padding: 20px 16px;
    }
    
    .intro-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-header-modern h2 {
        font-size: 2.2rem;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 24px;
    }
}

/* Ultra-Modern Gallery Page Styles */
.gallery-hero-ultra-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 50%, #0369a1 100%);
}

.hero-background-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image-gallery {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-particles-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(12, 74, 110, 0.9) 0%, 
        rgba(7, 89, 133, 0.8) 50%, 
        rgba(3, 105, 161, 0.7) 100%);
    z-index: 2;
}

.hero-content-gallery {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 100px 0;
}

.hero-badge-gallery {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(14, 165, 233, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(14, 165, 233, 0.3);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.2);
}

.hero-title-gallery {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-gallery {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    color: #e0f2fe;
}

.project-stats-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 48px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item-gallery {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item-gallery:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-item-gallery h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fbbf24;
}

.stat-item-gallery p {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-actions-gallery {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-gallery-primary,
.btn-gallery-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 2px solid transparent;
}

.btn-gallery-primary {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
}

.btn-gallery-primary:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.5);
}

.btn-gallery-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-gallery-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.breadcrumb-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb-gallery a {
    color: #e0f2fe;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-gallery a:hover {
    color: #0ea5e9;
}

.breadcrumb-gallery i {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Floating Categories */
.floating-categories {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 4;
}

.category-bubble {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px 20px;
    color: white;
    min-width: 140px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.category-bubble:hover {
    background: rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 0.4);
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-bubble i {
    font-size: 1.1rem;
    color: #fbbf24;
}

/* Gallery Introduction Modern */
.gallery-intro-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.intro-grid-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-badge-gallery {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.intro-content-gallery h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-text-gallery {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 32px;
}

.intro-features-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item-gallery {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #0ea5e9;
    transition: all 0.3s ease;
}

.feature-item-gallery:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-item-gallery i {
    color: #10b981;
    font-size: 1.2rem;
}

.feature-item-gallery span {
    font-weight: 600;
    color: #1e293b;
}

.visual-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.visual-showcase:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.showcase-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.visual-showcase:hover .showcase-img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: white;
}

.overlay-content-gallery h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.overlay-content-gallery p {
    opacity: 0.9;
    line-height: 1.5;
}

/* Gallery Filter Ultra Modern */
.gallery-filter-ultra-modern {
    padding: 80px 0;
    background: white;
    position: relative;
}

.filter-header-modern {
    text-align: center;
    margin-bottom: 60px;
}

.filter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.filter-header-modern h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
}

.filter-header-modern p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

.filter-buttons-modern {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn-modern {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 2px solid #e2e8f0;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    min-width: 160px;
    justify-content: center;
}

.filter-btn-modern:hover {
    border-color: #0ea5e9;
    color: #0ea5e9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.2);
}

.filter-btn-modern.active {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-color: #0ea5e9;
    color: white;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.filter-btn-modern.active:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.4);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.filter-btn-modern:hover .btn-glow {
    left: 100%;
}

.project-counter {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 600;
}

.project-counter span {
    color: #0ea5e9;
    font-weight: 800;
    font-size: 1.3rem;
}

/* Enhanced Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(14, 165, 233, 0.2);
}

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

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.9), rgba(2, 132, 199, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    padding: 30px 25px;
}

.gallery-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.gallery-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.gallery-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.project-category {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-date {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design for Gallery */
@media (max-width: 1200px) {
    .floating-categories {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 40px;
        flex-wrap: wrap;
    }
    
    .intro-grid-gallery {
        gap: 60px;
    }
    
    .project-stats-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-hero-ultra-modern {
        min-height: 80vh;
    }
    
    .hero-title-gallery {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-gallery {
        font-size: 1.1rem;
    }
    
    .project-stats-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-item-gallery {
        padding: 20px 16px;
    }
    
    .hero-actions-gallery {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-gallery-primary,
    .btn-gallery-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .floating-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-bubble {
        min-width: 120px;
        padding: 12px 16px;
        font-size: 0.8rem;
    }
    
    .intro-grid-gallery {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .filter-buttons-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn-modern {
        width: 100%;
        max-width: 250px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Modern Hero Responsive Design */
@media (max-width: 768px) {
    .modern-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .modern-hero .hero-stats {
        gap: 20px;
    }
    
    .modern-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .certification-badges {
        gap: 15px;
    }
    
    .cert-badge {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .modern-hero .hero-title {
        font-size: 2rem;
    }
    
    .modern-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .modern-hero .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
}

/* Enhanced Contact Hero Styles */
.contact-hero-enhanced {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/picture4.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(30, 60, 114, 0.95) 0%, 
        rgba(42, 82, 152, 0.9) 50%, 
        rgba(61, 126, 170, 0.85) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
}

.contact-hero-enhanced .hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: #ffd700;
}

.hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.hero-badge-modern {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 237, 78, 0.2));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffd700;
}

.contact-hero-enhanced .hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-hero-enhanced .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    min-width: 120px;
    transition: all 0.3s ease;
}

.contact-hero-enhanced .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.contact-hero-enhanced .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.contact-hero-enhanced .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary-enhanced,
.btn-secondary-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
}

.btn-primary-enhanced {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1e3c72;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-primary-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.btn-secondary-enhanced {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
}

.btn-secondary-enhanced:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.hero-contact-quick {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.8;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.quick-contact-item i {
    color: #ffd700;
    font-size: 1rem;
}

/* Enhanced Hero Responsive */
@media (max-width: 768px) {
    .contact-hero-enhanced {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .contact-hero-enhanced .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-hero-enhanced .stat-item {
        padding: 1rem 1.5rem;
        min-width: 100px;
    }
    
    .contact-hero-enhanced .stat-number {
        font-size: 2rem;
    }
    
    .hero-actions {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary-enhanced,
    .btn-secondary-enhanced {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 150px;
    }
    
    .hero-contact-quick {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Modern Contact Page Enhancements */

/* Enhanced Contact Info Section */
.contact-info-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-info-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-info-section .section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-section .section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.contact-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.contact-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
    font-family: 'Poppins', sans-serif;
}

.contact-card p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.contact-link {
    display: block;
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.contact-link:hover {
    color: #1e40af;
    background: rgba(37, 99, 235, 0.05);
    transform: translateX(5px);
}

.whatsapp-link {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    margin-top: 0.5rem;
}

.whatsapp-link:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.hours-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: rgba(37, 99, 235, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.hours-info span {
    color: #1e293b;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-info span:before {
    content: '•';
    color: #2563eb;
    font-weight: 900;
}

/* Enhanced Social Media Section */
.social-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.social-section h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
    position: relative;
    overflow: hidden;
}

.social-link::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;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.social-link:nth-child(1):hover {
    background: linear-gradient(135deg, #1877f2, #4267b2);
}

.social-link:nth-child(2):hover {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.social-link:nth-child(3):hover {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-link:nth-child(4):hover {
    background: linear-gradient(135deg, #e4405f, #c13584);
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.footer-section h3 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

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

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
}

.footer-bottom-content {
    text-align: center;
    color: #94a3b8;
}

.footer-bottom-content p {
    margin-bottom: 0.5rem;
}

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(120deg, #0099f7 0%, #f11712 100%);
    color: #fff;
    padding: 3rem 0 1.5rem 0;
    border-radius: 32px 32px 0 0;
    box-shadow: 0 -4px 32px rgba(0,0,0,0.08);
}
.modern-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    align-items: flex-start;
}
.modern-footer .footer-section h3,
.modern-footer .footer-section h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}
.modern-footer .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.modern-footer .footer-section ul li {
    margin-bottom: 0.5rem;
}
.modern-footer .footer-section ul li a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}
.modern-footer .footer-section ul li a:hover {
    color: #f8fafc;
}
.modern-footer .footer-section p,
.modern-footer .footer-section span {
    color: #f8fafc;
    font-size: 1rem;
}
.modern-footer .footer-highlight {
    color: #ffe066;
    font-weight: 700;
}
.modern-footer .social-links {
    margin-top: 1rem;
}
.modern-footer .social-link {
    display: inline-block;
    margin-right: 12px;
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.2s;
}
.modern-footer .social-link:hover {
    color: #ffe066;
}
.modern-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
}
.modern-footer-bottom .footer-bottom-content p {
    margin: 0.2rem 0;
    color: #fff;
    font-size: 1rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    }
    .nav-toggle.active .bar:nth-child(1) {
    .offices-grid {translateY(8px) rotate(45deg);
        grid-template-columns: 1fr;
    }
    .nav-toggle.active .bar:nth-child(3) {
    .floating-cards {anslateY(-8px) rotate(-45deg);
        display: none;
    }
    .hero-container {
    .section-header h2 {lumns: 1fr;
        font-size: 2.2rem;;
    }   gap: 2rem;
}   }

@media screen and (max-width: 480px) {
    .hero {t-size: 2.5rem;
        padding: 100px 0 60px;
    }
    .hero-stats {
    .hero-title {ontent: center;
        font-size: 2rem;
    }
    .about-content {
    .section-header h2 {lumns: 1fr;
        font-size: 1.8rem;
    }

    .contact-form {{
        padding: 2rem;columns: 1fr;
    }

    .hero-stats {ent {
        flex-direction: column;1fr;
        gap: 1rem;
    }
}
    .form-row {
/* Loading Animation */olumns: 1fr;
.loading {
    position: fixed;
    top: 0;s-grid {
    left: 0;-template-columns: 1fr;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    display: flex;one;
    align-items: center;
    justify-content: center;
    z-index: 10000; h2 {
    transition: opacity 0.5s ease;
}   }
}
.loading.hidden {
    opacity: 0;nd (max-width: 480px) {
    pointer-events: none;
}       padding: 100px 0 60px;
    }
.spinner {
    width: 50px;{
    height: 50px;: 2rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;{
    animation: spin 1s linear infinite;
}   }

@keyframes spin { {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
    .hero-stats {
/* Smooth Scrolling */: column;
html {  gap: 1rem;
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;ixed;
    transform: translateY(30px);
    transition: all 0.6s ease;
}   width: 100%;
    height: 100%;
.fade-in.visible {r(--gradient);
    opacity: 1;ex;
    transform: translateY(0);
}   justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.modern-about-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #0099f7 0%, #f11712 100%);
    border-radius: 0 0 32px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 2rem;
}
.about-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    background: url('images/picture2.jpeg') center center/cover no-repeat;
    opacity: 0.22;
    z-index: 1;
}
.about-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    background: linear-gradient(120deg, rgba(0,153,247,0.7) 0%, rgba(241,23,18,0.5) 100%);
    z-index: 2;
    border-radius: 0 0 32px 32px;
}
.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 1rem 2rem 1rem;
}
.about-hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: #f8fafc;
    line-height: 1.5;
}
.hero-keywords {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffe066;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}
.about-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.highlight-card {
    background: rgba(255,255,255,0.18);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 2px 12px rgba(0,153,247,0.08);
    backdrop-filter: blur(2px);
    transition: transform 0.2s, box-shadow 0.2s;
}
.highlight-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 24px rgba(0,153,247,0.18);
}
.highlight-card i {
    font-size: 1.3rem;
    color: #ffe066;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    color: #ffe066;
    font-weight: 700;
    border-radius: 12px;
    padding: 0.4rem 1.2rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}
.about-hero-actions {
    margin-top: 2.2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 24px;
    font-weight: 700;
    font-size: 1.08rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,153,247,0.08);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    border: none;
}
.btn-primary {
    background: linear-gradient(90deg, #0099f7 0%, #f11712 100%);
    color: #fff;
}
.btn-secondary {
    background: #ffe066;
    color: #0099f7;
}
.btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px rgba(0,153,247,0.18);
    opacity: 0.92;
}

/* Modern Company Story */
.modern-company-story .story-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
    margin-top: 3rem;
}
.modern-company-story .story-text {
    flex: 1 1 340px;
    max-width: 500px;
}
.story-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0099f7;
    margin-bottom: 1rem;
}
.story-lead {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 1.5rem;
}
.story-features {
    margin-top: 1.2rem;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.feature-icon {
    font-size: 1.5rem;
    color: #0099f7;
    background: #e3fcec;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #222;
}
.feature-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0;
}
.story-visual {
    flex: 1 1 340px;
    max-width: 400px;
    margin-top: 1.5rem;
}

/* Responsive Utilities */
.hidden {
    display: none !important;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    }
    .nav-toggle.active .bar:nth-child(1) {
    .offices-grid {translateY(8px) rotate(45deg);
        grid-template-columns: 1fr;
    }
    .nav-toggle.active .bar:nth-child(3) {
    .floating-cards {anslateY(-8px) rotate(-45deg);
        display: none;
    }
    .hero-container {
    .section-header h2 {lumns: 1fr;
        font-size: 2.2rem;;
    }   gap: 2rem;
}   }

@media screen and (max-width: 480px) {
    .hero {t-size: 2.5rem;
        padding: 100px 0 60px;
    }
    .hero-stats {
    .hero-title {ontent: center;
        font-size: 2rem;
    }
    .about-content {
    .section-header h2 {lumns: 1fr;
        font-size: 1.8rem;
    }

    .contact-form {{
        padding: 2rem;columns: 1fr;
    }

    .hero-stats {ent {
        flex-direction: column;1fr;
        gap: 1rem;
    }
}
    .form-row {
