/*
Theme Name: DEC BD
Theme URI: https://dec-bd.com
Author: Tanvir Rumman
Description: Custom theme for DEC BD - Engineering & Consultancy Company
Version: 1.4.0
*/

:root {
    --primary-color: #2ea3f2;
    --secondary-color: #1a7cc7;
    --accent-color: #f47721;
    --dark-color: #333333;
    --light-color: #ffffff;
    --text-color: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark-color);
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 600;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

a { color: var(--primary-color); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary-color); }
img { max-width: 100%; height: auto; }

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

.section { padding: 100px 0; }

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: #34D87F;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.section-title h2 {
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline {
    background: transparent;
    border-color: var(--light-color);
    color: var(--light-color);
}

.btn-outline:hover {
    background: var(--light-color);
    color: var(--dark-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 18px rgba(99, 99, 99, 0.08);
    transition: all 300ms ease;
    padding: 12px 0;
    border-bottom: 1px solid rgba(20, 15, 114, 0.05);
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(20, 15, 114, 0.15);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
}

.logo {
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo img {
    max-height: 65px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

#nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
    align-items: center;
}

#nav-menu li {
    position: relative;
}

#nav-menu a {
    color: #140F72;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

#nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #140F72, #34D87F);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#nav-menu a:hover {
    color: #34D87F;
    background: rgba(20, 15, 114, 0.05);
}

#nav-menu a:hover::before {
    width: 40%;
}

#nav-menu a.current-menu-item,
#nav-menu a.active,
#nav-menu li.current-menu-item > a,
#nav-menu li.active > a,
.current_page_item a {
    color: #ffffff !important;
    background: linear-gradient(135deg, #140F72, #1a1a4e) !important;
    box-shadow: 0 4px 15px rgba(20, 15, 114, 0.3) !important;
}

#nav-menu a.current-menu-item::before,
#nav-menu a.active::before,
.current_page_item a::before {
    display: none;
}

#nav-menu a.current-menu-item::after,
#nav-menu a.active::after,
.current_page_item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #140F72;
}

#nav-menu .menu-icon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

#nav-menu a:hover .menu-icon,
#nav-menu a.current-menu-item .menu-icon,
#nav-menu a.active .menu-icon {
    opacity: 1;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 12px;
    background: linear-gradient(135deg, #140F72, #34D87F);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(52, 216, 127, 0.4);
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.header-cta {
    margin-left: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #140F72, #34D87F);
    color: white !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(20, 15, 114, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 216, 127, 0.4);
    color: white;
    padding-left: 30px;
    padding-right: 18px;
}

.cta-button i {
    font-size: 12px;
}

/* Hero Section */
.hero-section {
    min-height: 780px;
    position: relative;
    overflow: hidden;
    background: url('https://www.dec-bd.com/wp-content/uploads/2023/10/HP-TOP.webp');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 50%, rgba(255,255,255,0.5) 100%);
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 15, 114, 0.9) 0%, rgba(52, 216, 127, 0.15) 50%, rgba(20, 15, 114, 0.7) 100%);
    z-index: 1;
}

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

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-top: 8%;
    padding-bottom: 5%;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    position: relative;
    z-index: 2;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-section h1 {
    color: #fff;
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-section .gradient-text {
    background: linear-gradient(90deg, #00ff88, #00ccff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200%;
    animation: gradientShift 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(52, 216, 127, 0.5));
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 450px;
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.btn-primary {
    background: linear-gradient(135deg, #140F72 0%, #2a1f9e 100%);
    color: #34D87F !important;
    border: none;
    padding: 18px 36px 18px 24px;
    border-radius: 50px;
    letter-spacing: 1px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(20, 15, 114, 0.4);
    transition: all 0.4s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #34D87F 0%, #00cc6a 100%);
    color: #140F72 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(52, 216, 127, 0.5);
    padding-right: 24px;
    padding-left: 36px;
}

/* New Hero Slider */
.hero-slider-new {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

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

.slide-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.slide-new.active {
    opacity: 1;
    z-index: 2;
}

.slide-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slider-btn:hover {
    background: rgba(52, 216, 127, 0.9);
    border-color: #34D87F;
    transform: scale(1.1);
}

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

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

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.slider-dots .dot.active {
    background: #34D87F;
    border-color: #34D87F;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(52, 216, 127, 0.8);
}

@media (max-width: 992px) {
    .hero-slider-new {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
    }
    .hero-row {
        flex-direction: column;
        padding-top: 30%;
    }
}

.btn-outline {
    background: transparent;
    border: 2px solid #140F72;
    color: #140F72;
}

.btn-outline:hover {
    background: #140F72;
    color: white !important;
}

/* Hero Slider */
.hero-slider {
    flex: 1;
    max-width: 600px;
    width: 71%;
    position: relative;
    z-index: 2;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    flex-shrink: 0;
    width: 100%;
    height: 380px;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.slider-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

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

.slider-dot.active {
    background: #34D87F;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s;
}

.slider-arrow:hover {
    background: #34D87F;
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f0f7ff 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #140F72, #34D87F, #00ccff);
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 216, 127, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.about-left {
    padding-right: 40px;
}

.about-left .section-subtitle {
    display: inline-block;
    color: #34D87F;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.about-left h2 {
    margin-bottom: 25px;
    font-size: 2.2rem;
    color: #140F72;
    font-weight: 700;
    line-height: 1.3;
}

.about-content {
    margin-bottom: 30px;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.about-content strong {
    color: #140F72;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(20, 15, 114, 0.25);
    transition: transform 0.4s ease;
}

.about-map:hover {
    transform: scale(1.02);
}

.about-map img {
    width: 100%;
    display: block;
}

.about-stats-mini {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.mini-stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    flex: 1;
}

.mini-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(20, 15, 114, 0.15);
}

.mini-stat img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.mini-stat span {
    display: block;
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
}

.about-section h2 {
    margin-bottom: 25px;
    font-size: 2rem;
    color: #140F72;
    font-weight: 700;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #140F72 0%, #1a1a4e 50%, #0f3460 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(52, 216, 127, 0.1) 0%, transparent 50%);
    animation: statsGlow 15s ease-in-out infinite;
}

@keyframes statsGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 216, 127, 0.2);
    border-radius: 20px;
    padding: 40px 20px;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #140F72, #34D87F, #140F72);
    background-size: 200% 100%;
    animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #34D87F;
    box-shadow: 0 20px 40px rgba(52, 216, 127, 0.2);
}

.stat-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(90deg, #ffffff, #34D87F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

/* Projects Section */
.projects-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 216, 127, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, #ffffff, transparent);
    pointer-events: none;
}

.projects-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(0deg, #ffffff, transparent);
    pointer-events: none;
}

.section-title {
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #140F72;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #140F72, #34D87F);
    border-radius: 2px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 15, 114, 0.8), rgba(52, 216, 127, 0.6));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 30px 60px rgba(20, 15, 114, 0.3);
}

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

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-overlay::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: -1;
}

.project-overlay h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.project-overlay p {
    color: #34D87F;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.project-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: #34D87F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(52, 216, 127, 0.5);
}

.project-card:hover .project-link {
    transform: translate(-50%, -50%) scale(1);
}

.project-link svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    aspect-ratio: 1;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(20, 15, 114, 0.25);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.project-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #140F72, #34D87F, #00ccff, #140F72);
    background-size: 300% 100%;
    animation: gradientFlow 5s ease infinite;
}

.services-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(52, 216, 127, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: servicesFloat 8s ease-in-out infinite;
}

.services-section .bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.services-section .bg-shapes span {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShapes 15s ease-in-out infinite;
}

.services-section .bg-shapes span:nth-child(1) {
    width: 300px;
    height: 300px;
    background: #140F72;
    top: 10%;
    right: -100px;
    animation-delay: 0s;
}

.services-section .bg-shapes span:nth-child(2) {
    width: 200px;
    height: 200px;
    background: #34D87F;
    bottom: 20%;
    left: -50px;
    animation-delay: 2s;
}

.services-section .bg-shapes span:nth-child(3) {
    width: 150px;
    height: 150px;
    background: #00ccff;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes floatShapes {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

@keyframes servicesFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(20, 15, 114, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 15, 114, 0.95) 0%, rgba(52, 216, 127, 0.9) 100%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(20, 15, 114, 0.3);
    border-color: transparent;
}

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

.service-card .service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #140F72 0%, #2a1f9e 100%);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #34D87F 0%, #00cc6a 100%);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #00ccff 0%, #0099cc 100%);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #f47721 0%, #e65c00 100%);
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #9b51e0 0%, #7c3aed 100%);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-card img {
    width: 60px;
    height: 60px;
    margin: 0;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.service-card:hover img {
    transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #140F72;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #fff;
}

.service-card ul {
    transition: color 0.3s ease;
}

.service-card:hover ul li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card:hover ul li::before {
    color: #00ff88;
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin-top: 20px;
    padding: 0;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(20, 15, 114, 0.1);
    font-size: 0.9rem;
    color: #555;
    transition: all 0.3s ease;
}

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

.service-card ul li::before {
    content: '✓';
    color: #34D87F;
    margin-right: 10px;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #140F72 0%, #1a1a4e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(52, 216, 127, 0.08) 0%, transparent 50%);
    animation: testimonialGlow 10s ease-in-out infinite;
}

@keyframes testimonialGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

.testimonials-section .section-title h2 {
    color: #fff;
}

.testimonials-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #34D87F;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 60px;
    color: #34D87F;
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.5;
    font-family: Georgia, serif;
}

.testimonial-author h4 {
    color: #34D87F;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Clients Section */
.clients-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 80px 0;
    overflow: hidden;
}

.clients-section .section-title {
    margin-bottom: 50px;
}

.clients-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.client-track {
    display: flex;
    gap: 60px;
    animation: scrollClients 20s linear infinite;
    width: max-content;
}

.client-track:hover {
    animation-play-state: paused;
}

@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
}

.client-logo img {
    max-width: 150px;
    max-height: 70px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
    object-fit: contain;
    border-radius: 8px;
}

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

/* About Page Styles */
.about-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(20, 15, 114, 0.3) 0%, rgba(26, 26, 78, 0.3) 100%), url('https://dec-bd.com/wp-content/uploads/2023/10/About2.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 120px;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    background-size: 30px 30px;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.about-hero .gradient-text {
    background: linear-gradient(90deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(52, 216, 127, 0.6));
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #34D87F;
    margin-bottom: 15px;
    position: relative;
}

.section-tag::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #34D87F, transparent);
    margin-top: 10px;
}

.our-story {
    padding: 180px 0 120px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    z-index: 1;
}

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

.story-content h2 {
    font-size: 2.5rem;
    color: #140F72;
    margin-bottom: 25px;
    line-height: 1.3;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.story-content strong {
    color: #140F72;
}

.story-image {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
}

.story-image img.dec-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(20, 15, 114, 0.35));
    transition: all 0.4s ease;
    animation: floatLogo 4s ease-in-out infinite;
}

.story-image img.dec-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 35px 60px rgba(20, 15, 114, 0.5));
}

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

.management-message {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

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

.message-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.message-content h2 {
    font-size: 2rem;
    color: #140F72;
    margin-bottom: 25px;
    line-height: 1.3;
}

.message-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.message-content strong {
    color: #140F72;
}

.message-content .highlight {
    background: linear-gradient(135deg, rgba(52, 216, 127, 0.1), rgba(20, 15, 114, 0.05));
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #34D87F;
    font-weight: 500;
}

.team-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 50%, #ffffff 100%);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #140F72;
    margin-top: 15px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(20, 15, 114, 0.2);
}

.member-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

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

.member-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(20, 15, 114, 0.95), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.team-member:hover .member-overlay {
    transform: translateY(0);
}

.member-info h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.member-info .member-title {
    color: #34D87F;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-details {
    padding: 30px;
}

.member-details h3 {
    color: #140F72;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.member-details .member-title {
    color: #34D87F;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.member-details .credentials {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.member-details p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}

.member-details .highlight {
    background: linear-gradient(135deg, rgba(52, 216, 127, 0.1), rgba(20, 15, 114, 0.05));
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    color: #140F72;
    font-size: 0.9rem;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #140F72 0%, #1a1a4e 100%);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
    background-size: 30px 30px;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .story-grid,
    .message-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    .story-content h2,
    .message-content h2,
    .section-header h2 {
        font-size: 1.8rem;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .member-image {
        height: 300px;
    }
}

/* Enhanced About Page Styles */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 15, 114, 0.92) 0%, rgba(26, 26, 78, 0.88) 50%, rgba(15, 52, 96, 0.92) 100%), url('https://dec-bd.com/wp-content/uploads/2023/10/About2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(52, 216, 127, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(20, 15, 114, 0.3) 0%, transparent 50%);
    animation: particlesFloat 15s ease-in-out infinite;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.hero-waves svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-floating {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border: 2px solid rgba(52, 216, 127, 0.3);
    border-radius: 50%;
    animation: floatShape 20s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.floating-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: -10s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(0, -40px) rotate(180deg); }
    75% { transform: translate(-20px, -20px) rotate(270deg); }
}

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

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}

.about-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out, glowPulse 3s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(52, 216, 127, 0.5);
    white-space: nowrap;
}

.about-hero .hero-subtitle {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 50px;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.3s both;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-cta {
    display: flex;
    gap: 25px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-cta .btn {
    padding: 18px 50px;
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, #34D87F, #140F72);
    border: none;
    box-shadow: 0 8px 30px rgba(52, 216, 127, 0.4);
}

.hero-cta .btn-primary:hover {
    background: linear-gradient(135deg, #140F72, #34D87F);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(52, 216, 127, 0.5);
    padding-left: 45px;
    padding-right: 35px;
}

.hero-cta .btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.hero-cta .btn-outline:hover {
    background: linear-gradient(135deg, #34D87F, #140F72) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(52, 216, 127, 0.4);
}

@keyframes glowPulse {
    0%, 100% { text-shadow: 0 0 40px rgba(52, 216, 127, 0.5); }
    50% { text-shadow: 0 0 60px rgba(52, 216, 127, 0.8), 0 0 80px rgba(52, 216, 127, 0.4); }
}

.about-hero .hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.3s both;
    letter-spacing: 3px;
}

.hero-cta {
    display: flex;
    gap: 25px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-cta .btn {
    padding: 15px 40px;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, #34D87F, #140F72);
    border: none;
}

.hero-cta .btn-primary:hover {
    background: linear-gradient(135deg, #140F72, #34D87F);
    padding-left: 45px;
    padding-right: 35px;
}

.about-hero .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s ease-out 0.8s both, bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.about-hero .hero-scroll span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-hero .hero-scroll span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-hero .scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
}

.about-hero .scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #34D87F;
    border-radius: 50%;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 25px; opacity: 0.5; }
}

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

/* Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, #140F72 0%, #1a1a4e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
    z-index: 2;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(52, 216, 127, 0.1) 0%, transparent 70%);
    animation: statsGlow 10s ease-in-out infinite;
}

@keyframes statsGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}

.stats-row {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.stat-box {
    text-align: center;
    padding: 20px 40px;
    position: relative;
}

.stat-box::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.2);
}

.stat-box:last-child::after {
    display: none;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #34D87F;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.stat-plus {
    font-size: 2rem;
    color: #34D87F;
    margin-left: 5px;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Our Story Section */
.our-story {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.section-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, #f8f9fa, transparent);
    pointer-events: none;
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.story-content .section-tag {
    margin-bottom: 20px;
}

.story-content h2 {
    font-size: 2.8rem;
    color: #140F72;
    margin-bottom: 30px;
    line-height: 1.3;
}

.highlight-text {
    color: #34D87F;
    position: relative;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.story-content strong {
    color: #140F72;
}

.story-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(52, 216, 127, 0.1), rgba(20, 15, 114, 0.05));
    border-radius: 30px;
    border: 1px solid rgba(52, 216, 127, 0.3);
}

.feature-icon {
    color: #34D87F;
    font-weight: bold;
}

.feature-item span {
    color: #140F72;
    font-weight: 600;
    font-size: 0.9rem;
}

.story-image-wrapper {
    position: relative;
}

.story-image-wrapper .story-image img {
    max-width: 450px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(20, 15, 114, 0.25);
    transition: transform 0.5s ease;
}

.story-image-wrapper:hover .story-image img {
    transform: scale(1.03);
}

.image-frame {
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 3px solid #34D87F;
    border-radius: 20px;
    z-index: -1;
}

/* Vision Mission Section */
.vision-mission {
    padding: 150px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    z-index: 1;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vm-card {
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #140F72, #34D87F);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(20, 15, 114, 0.15);
}

.vm-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vm-card h3 {
    font-size: 1.5rem;
    color: #140F72;
    margin-bottom: 15px;
}

.vm-card p {
    color: #666;
    line-height: 1.7;
}

/* Management Message Section */
.management-message {
    padding: 180px 0 120px;
    background: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 10% 90%, rgba(52, 216, 127, 0.08) 0%, transparent 40%),
                      radial-gradient(circle at 90% 10%, rgba(20, 15, 114, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.message-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.message-image-wrapper {
    position: relative;
}

.message-image-wrapper .message-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, #140F72, #34D87F);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(20, 15, 114, 0.3);
}

.badge-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.badge-text {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-top: 5px;
}

.message-content .section-tag {
    margin-bottom: 20px;
}

.message-content h2 {
    font-size: 2.5rem;
    color: #140F72;
    margin-bottom: 25px;
    line-height: 1.3;
}

.message-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(52, 216, 127, 0.1), rgba(20, 15, 114, 0.05));
    border: 1px solid rgba(52, 216, 127, 0.3);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-box p {
    margin: 0;
    color: #333;
}

/* Team Section */
.team-section {
    padding: 180px 0 120px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    z-index: 1;
}

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

.team-section .section-tag {
    margin-bottom: 15px;
}

.team-section h2 {
    font-size: 3rem;
    color: #140F72;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.team-member {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(20, 15, 114, 0.15);
}

.member-card {
    position: relative;
}

.member-image {
    position: relative;
    height: 380px;
    overflow: hidden;
}

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

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

.member-social {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-member:hover .member-social {
    opacity: 1;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #140F72;
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
}

.member-info {
    padding: 25px;
    text-align: center;
    background: linear-gradient(180deg, #fff, #f8f9fa);
}

.member-info h3 {
    color: #140F72;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.member-info .member-title {
    color: #34D87F;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.member-info .credentials {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.member-bio {
    padding: 25px;
    border-top: 1px solid #eee;
}

.member-bio p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}

.member-bio .highlight {
    color: #140F72;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(52, 216, 127, 0.1), rgba(20, 15, 114, 0.05));
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 0;
}

/* CTA Section Enhanced */
.cta-section {
    padding: 150px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #140F72 50%, #1a1a4e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
    z-index: 2;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(52, 216, 127, 0.2) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(52, 216, 127, 0.15) 0%, transparent 40%);
    animation: ctaParticles 8s ease-in-out infinite;
}

@keyframes ctaParticles {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.3rem;
    margin-bottom: 40px;
}

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

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-hero h1 { font-size: 3.5rem; letter-spacing: 5px; }
    .story-wrapper, .message-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .vm-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { flex-wrap: wrap; gap: 20px; }
    .stat-box::after { display: none; }
}

@media (max-width: 768px) {
    .about-hero h1 { font-size: 2.5rem; letter-spacing: 3px; }
    .stats-row { flex-direction: column; align-items: center; }
    .stat-number { font-size: 3rem; }
    .team-grid { grid-template-columns: 1fr; }
    .story-features { flex-direction: column; }
    .cta-section h2 { font-size: 2.5rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #0a0a1a 0%, #140F72 50%, #0a0a1a 100%);
    color: white;
    padding: 120px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
    background-size: 30px 30px;
    pointer-events: none;
}

.contact-section h2 {
    color: white;
}

.contact-section h3 {
    color: white;
    margin-bottom: 25px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-grid .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-grid .contact-icon {
    width: 36px;
    min-width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #140F72, #34D87F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-grid .contact-icon svg {
    width: 14px;
    height: 14px;
    fill: white;
}

.footer-grid .contact-item > div:last-child p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    fill: white;
}

.contact-details p {
    margin-bottom: 5px;
    color: rgba(255,255,255,0.8);
}

.contact-details strong {
    color: white;
    display: block;
    margin-bottom: 5px;
}

.wlga-badge {
    margin-top: 30px;
}

.wlga-badge img {
    width: 80px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: var(--transition);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

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

.contact-form button {
    width: 100%;
}

/* Footer */
.footer {
    background: #0a0a1a;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 40px;
}

.footer-brand {
    padding-right: 20px;
}

.footer-brand img {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-brand p {
    margin-bottom: 20px;
}

.footer h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

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

.social-links svg {
    fill: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-section h1 { font-size: 2.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header .container { 
        flex-wrap: wrap; 
        position: relative;
    }
    .mobile-toggle { 
        display: flex; 
    }
    .header-cta {
        display: none;
    }
    #nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        border-top: 3px solid #34D87F;
    }
    #nav-menu.active { 
        display: flex; 
    }
    #nav-menu li {
        border-bottom: 1px solid rgba(20, 15, 114, 0.1);
    }
    #nav-menu li:last-child {
        border-bottom: none;
    }
    #nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 0;
    }
    #nav-menu a.current-menu-item::after,
    #nav-menu a.active::after {
        display: none;
    }
    #nav-menu a::before {
        display: none;
    }
    #nav-menu a:hover,
    #nav-menu a.current-menu-item {
        background: linear-gradient(90deg, rgba(52, 216, 127, 0.1), rgba(20, 15, 114, 0.05));
        padding-left: 30px;
        color: #34D87F !important;
    }
    #nav-menu a::after {
        content: '';
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid #34D87F;
        opacity: 0;
        transition: all 0.3s ease;
    }
    #nav-menu a:hover::after,
    #nav-menu a.current-menu-item::after {
        opacity: 1;
        left: 15px;
    }
    .hero-section { padding-top: 100px; }
    .hero-section h1 { font-size: 2rem; }
    .hero-content { text-align: center; }
    .hero-buttons { justify-content: center; }
    .about-section .et_pb_row,
    .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 30px; }
    .projects-grid,
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .clients-grid { gap: 20px; }
    .clients-grid img { max-width: 120px; }
}

/* Page Hero (shared by all pages) */
.page-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 15, 114, 0.92) 0%, rgba(26, 26, 78, 0.88) 50%, rgba(15, 52, 96, 0.92) 100%), url('https://dec-bd.com/wp-content/uploads/2023/10/About2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
    white-space: nowrap;
    background: linear-gradient(90deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(52, 216, 127, 0.6));
    padding: 0 20px;
}

.page-hero .hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.3s both;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Services Page */
.services-intro {
    padding: 100px 0 60px;
    background: #fff;
    text-align: center;
}

.services-intro .intro-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-intro p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
}

.services-intro .highlight {
    color: #34D87F;
    font-weight: 600;
}

.services-grid-section {
    padding: 60px 0 120px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-card-large {
    background: white;
    border-radius: 25px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #140F72, #34D87F);
}

.service-card-large:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(20, 15, 114, 0.15);
}

.service-card-large .service-icon {
    margin-bottom: 25px;
}

.service-card-large .service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card-large:hover .service-icon img {
    transform: scale(1.1);
}

.service-card-large h3 {
    color: #140F72;
    font-size: 1.5rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.service-card-large .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-card-large .service-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 0.95rem;
    position: relative;
    padding-left: 25px;
}

.service-card-large .service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #34D87F;
    font-weight: bold;
}

.service-card-large .service-list li:last-child {
    border-bottom: none;
}

/* Zigzag Services Layout */
.zigzag-services {
    padding: 60px 0 120px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.zigzag-row {
    display: flex;
    align-items: stretch;
    margin-bottom: 60px;
    min-height: 350px;
}

.zigzag-row.reverse {
    flex-direction: row-reverse;
}

.zigzag-row .zigzag-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg, #140F72 0%, #2a1f9e 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.zigzag-row .zigzag-image img {
    max-width: 180px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.zigzag-row .zigzag-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background: #140F72;
}

.zigzag-row .zigzag-text h3 {
    color: #34D87F;
    font-size: 1.8rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.zigzag-row .zigzag-text .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zigzag-row .zigzag-text .service-list li {
    color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
}

.zigzag-row .zigzag-text .service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #34D87F;
    font-weight: bold;
}

.zigzag-row .zigzag-text .service-list li:last-child {
    border-bottom: none;
}

.zigzag-row .zigzag-video {
    flex: 2;
    background: #000;
    overflow: hidden;
}

.zigzag-row .zigzag-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .zigzag-row {
        flex-direction: column;
        min-height: auto;
    }
    
    .zigzag-row.reverse {
        flex-direction: column;
    }
    
    .zigzag-row .zigzag-image,
    .zigzag-row .zigzag-text,
    .zigzag-row .zigzag-video {
        flex: none;
        width: 100%;
    }
    
    .zigzag-row .zigzag-image {
        padding: 30px;
    }
    
    .zigzag-row .zigzag-video {
        min-height: 250px;
    }
}

/* Projects Page */
.projects-section-new {
    padding: 100px 0;
    background: #fff;
}

.project-region {
    margin-bottom: 80px;
}

.project-region:last-child {
    margin-bottom: 0;
}

.region-title {
    font-size: 2rem;
    color: #140F72;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #34D87F;
    display: flex;
    align-items: center;
    gap: 15px;
}

.region-icon {
    font-size: 2.5rem;
}

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

.project-card-new {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.project-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(20, 15, 114, 0.15);
}

.project-card-new .project-img {
    height: 220px;
    overflow: hidden;
}

.project-card-new .project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-card-new .project-info {
    padding: 25px;
}

.project-card-new h3 {
    color: #140F72;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.project-card-new .project-location {
    color: #34D87F;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-card-new .project-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contact Page */
.contact-section-new {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-grid-new {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #140F72;
    margin-bottom: 20px;
}

.contact-info .contact-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-method .method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #140F72, #34D87F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-method h4 {
    color: #140F72;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-method p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.social-connect h4 {
    color: #140F72;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #140F72, #1a1a4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #34D87F, #140F72);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-form-new h3 {
    color: #140F72;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.contact-form-new input,
.contact-form-new textarea {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form-new input:focus,
.contact-form-new textarea:focus {
    outline: none;
    border-color: #34D87F;
    box-shadow: 0 0 0 4px rgba(52, 216, 127, 0.1);
}

.contact-form-new button {
    width: 100%;
    padding: 18px 40px;
    font-size: 1.1rem;
}

.map-section {
    padding-bottom: 120px;
    background: #fff;
}

.map-placeholder {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.map-content img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.map-section-compact {
    padding: 40px 0 80px;
    background: #fff;
}

.map-section-compact .map-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-section-compact .map-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid-new {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    .page-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    .services-showcase {
        grid-template-columns: 1fr;
    }
    .project-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 30px;
    }
}
