/* 
   Markinity Website Styles
   Color Palette:
   - Dark teal/navy: #002E3D
   - Teal/turquoise: #2E8B8B
   - Light blue: #68B0E3
   - Light blue/gray: #E1E8ED
   - White: #FFFFFF
   - Yellow/gold: #FFBC00
*/

/* Base Styles */
:root {
    --primary-dark: #002E3D;
    --secondary: #2E8B8B;
    --accent: #68B0E3;
    --light: #E1E8ED;
    --white: #FFFFFF;
    --gold: #FFBC00;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-dark);
    color: var(--white);
    line-height: 1.6;
    padding-bottom: 0 !important;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title {
    text-align: center !important;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold);
}

.btn-primary {
    background-color: var(--gold);
    color: var(--primary-dark);
    padding: 10px 20px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

/* Header Styles */
.header {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: var(--primary-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 80px;
    display: flex;
    align-items: center;
}

/* Page-specific header colors */
.page-matrix .header {
    background-color: var(--secondary);
}

.page-makers .header {
    background-color: #1A4554;
}

.page-contact .header {
    background: linear-gradient(90deg, #002E3D 0%, #1A4554 100%);
}

.page-projects .header {
    background-color: #00242F;
}

.header.scrolled {
    background-color: rgba(0, 46, 61, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.logo a {
    display: inline-block;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
}

.main-nav a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    white-space: nowrap;
}

.main-nav a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.main-nav a:not(.btn-primary):hover::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-nav-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background: linear-gradient(rgba(0, 46, 61, 0.7), rgba(0, 46, 61, 0.85)), url('../images/hero-bg.svg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 188, 0, 0.03) 0%, transparent 70%);
    animation: pulse 6s infinite alternate;
    z-index: 1;
}

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

.hero-title {
    font-family: 'Anton', 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: heroTitleIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.7);
    transform-origin: center;
}

.hero-subtitle {
    font-family: 'Anton', 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 25px;
    animation: heroSubtitleIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transform-origin: center;
}

.hero-description {
    font-family: 'Lato', 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    animation: heroDescriptionIn 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    position: relative;
}

.hero-description::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 30px auto 0;
    animation: lineGrow 2s ease forwards;
    transform-origin: center;
}

@keyframes heroTitleIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroSubtitleIn {
    0% {
        opacity: 0;
        transform: translateY(25px) scale(0.97);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroDescriptionIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineGrow {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 80px;
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}

/* Responsive styles for hero section */
@media (max-width: 992px) {
    .hero-title {
        font-size: 62px;
    }
    
    .hero-subtitle {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 22px;
    }
    
    .hero-description::after {
        margin-top: 25px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 20px;
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 38px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-description::after {
        margin-top: 20px;
        height: 2px;
        width: 60px;
    }
}

/* Other hero styles */
.makers-hero {
    background: linear-gradient(rgba(0, 46, 61, 0.8), rgba(0, 46, 61, 0.9)), url('../images/hero-bg.svg');
}

.matrix-hero {
    background: linear-gradient(rgba(46, 139, 139, 0.8), rgba(46, 139, 139, 0.9)), url('../images/hero-bg.svg');
}

.projects-hero {
    background: linear-gradient(rgba(0, 46, 61, 0.8), rgba(104, 176, 227, 0.7)), url('../images/hero-bg.svg');
}

.contact-hero {
    position: relative;
    background: linear-gradient(90deg, rgba(26, 69, 84, 0.9), rgba(46, 139, 139, 0.9)), url('../images/hero-bg.svg');
    height: auto;
    min-height: 60vh;
    padding: 150px 0 100px;
    overflow: hidden;
}

.contact-hero .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.contact-hero .hero-particles:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 25%);
    animation: particlesFloat 20s infinite linear;
}

.contact-hero .hero-title {
    font-family: 'Anton', 'Poppins', sans-serif;
    font-size: 60px;
    letter-spacing: 1px;
}

/* Logo Carousel Section */
.logo-carousel {
    padding: 30px 0;
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, var(--primary-dark), transparent);
    z-index: 2;
}

.logo-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to left, var(--primary-dark), transparent);
    z-index: 2;
}

.logo-track {
    display: flex;
    align-items: center;
    animation: logoScroll 30s linear infinite;
    width: calc(220px * 10); /* Width of each logo * number of logos (doubled for seamless looping) */
    padding: 10px 0;
}

.logo-slide {
    flex: 0 0 auto;
    width: 220px;
    height: 100px;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1.5px;
    text-align: center;
    opacity: 1;
    text-transform: uppercase;
    position: relative;
}

.logo-slide:hover {
    opacity: 1;
    transform: scale(1.05);
    color: var(--gold);
    text-shadow: 0 0 8px rgba(255, 188, 0, 0.5);
}

.logo-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 1;
    filter: none;
}

.logo-slide:hover img {
    transform: scale(1.05);
}

.logo-slide::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.logo-slide:hover::after {
    width: 50%;
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-220px * 5)); /* Width of each logo * number of unique logos */
    }
}

@media (max-width: 768px) {
    .logo-slide {
        width: 180px;
        margin: 0 20px;
        font-size: 16px;
        height: 80px;
    }
    
    .logo-track {
        width: calc(180px * 10);
        padding: 5px 0;
    }
    
    .logo-slide img {
        max-height: 80px;
    }
    
    @keyframes logoScroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-180px * 5));
        }
    }
}

@media (max-width: 576px) {
    .logo-slide {
        width: 140px;
        margin: 0 15px;
        font-size: 14px;
        letter-spacing: 1px;
        height: 70px;
    }
    
    .logo-track {
        width: calc(140px * 10);
    }
    
    .logo-carousel::before,
    .logo-carousel::after {
        width: 80px;
    }
    
    .logo-slide img {
        max-height: 70px;
    }
    
    @keyframes logoScroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-140px * 5));
        }
    }
}

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

/* Client Tags Section */
.client-tags {
    padding: 80px 0;
    text-align: center;
    background-color: rgba(46, 139, 139, 0.05);
}

.client-tags .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.client-tag {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--light);
    padding: 10px 20px;
    border-radius: 3px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.client-tag:hover {
    color: var(--gold);
    transform: translateY(-5px);
}

/* Pain Points Section - Enhanced modern design */
.pain-points {
    padding: 100px 0;
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.pain-points:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(46, 139, 139, 0.05) 0%, transparent 70%);
    z-index: 0;
    animation: rotateGradient 20s infinite linear;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.pain-points .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.pain-points .section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--white);
    position: relative;
    padding-bottom: 18px;
    font-weight: 700;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%;
}

.pain-points .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--gold));
    border-radius: 3px;
}

/* Enhanced Pain Points Carousel */
.pain-points-carousel {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    padding: 30px 0;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    width: 900%; /* All 9 slides */
}

/* Modern card design */
.pain-point-card {
    flex: 0 0 calc(100% - 40px);
    margin: 0 20px;
    background: linear-gradient(145deg, rgba(0, 70, 90, 0.6) 0%, rgba(0, 46, 61, 0.8) 100%);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(46, 139, 139, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pain-point-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 188, 0, 0.05), transparent 80%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pain-point-card.active {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 188, 0, 0.2);
    background: linear-gradient(145deg, rgba(0, 70, 90, 0.7) 0%, rgba(0, 46, 61, 0.9) 100%);
}

.pain-point-card.active:before,
.pain-point-card:hover:before {
    opacity: 1;
}

.pain-point-card.animated {
    animation: cardFadeIn 0.8s forwards;
}

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

.pain-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(145deg, var(--gold), #e6a800);
    box-shadow: 0 8px 25px rgba(255, 188, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.pain-icon:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--gold);
    opacity: 0.3;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.pain-point-card:hover .pain-icon,
.pain-point-card.active .pain-icon {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 188, 0, 0.4);
}

.pain-point-card:hover .pain-icon:after,
.pain-point-card.active .pain-icon:after {
    transform: scale(1.2);
    opacity: 0.5;
}

.pain-icon i {
    font-size: 32px;
    color: var(--primary-dark);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.1);
}

.pain-point-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gold);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.pain-point-card:hover h3,
.pain-point-card.active h3 {
    transform: translateY(-3px);
}

.pain-point-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    max-width: 260px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.pain-point-card:hover p,
.pain-point-card.active p {
    color: rgba(255, 255, 255, 0.95);
}

/* Enhanced carousel controls */
.carousel-controls {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.carousel-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.carousel-dot:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--gold);
    opacity: 0;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.carousel-dot:hover:after {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.5;
}

.carousel-dot.active {
    background-color: var(--gold);
    transform: scale(1.2);
}

.carousel-dot.active:after {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0.6;
}

.carousel-arrows {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.carousel-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(0, 46, 61, 0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    position: relative;
    overflow: hidden;
}

.carousel-arrow:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    opacity: 0;
    transform: scale(0);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.carousel-arrow i {
    font-size: 18px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.carousel-arrow:hover:before, 
.carousel-arrow:focus:before {
    opacity: 1;
    transform: scale(1);
}

.carousel-arrow:hover, 
.carousel-arrow:focus {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.carousel-arrow:hover i, 
.carousel-arrow:focus i {
    color: var(--primary-dark);
}

/* Enhanced responsive styles */
@media (max-width: 992px) {
    .pain-points {
        padding: 80px 0;
    }
    
    .pain-points .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .pain-point-card {
        min-height: 240px;
        padding: 30px 25px;
        max-width: 80%;
    }
    
    .pain-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }
    
    .pain-icon i {
        font-size: 28px;
    }
    
    .pain-point-card h3 {
        font-size: 20px;
        margin-bottom: 14px;
    }
    
    .pain-point-card p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .pain-points {
        padding: 70px 0;
    }
    
    .pain-points .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .carousel-container {
        padding: 15px 5px;
    }
    
    .pain-point-card {
        min-height: 220px;
        padding: 25px 20px;
        max-width: 85%;
    }
    
    .pain-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }
    
    .pain-icon i {
        font-size: 26px;
    }
    
    .carousel-controls {
        margin-top: 30px;
        gap: 20px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .pain-points {
        padding: 60px 0;
    }
    
    .pain-points .section-title {
        font-size: 24px;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    .pain-point-card {
        min-height: 200px;
        padding: 20px 15px;
        max-width: 90%;
    }
    
    .pain-point-card p {
        font-size: 14px;
        max-width: 220px;
    }
    
    .carousel-controls {
        margin-top: 25px;
        gap: 15px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow i {
        font-size: 16px;
    }
    
    .pain-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .pain-icon i {
        font-size: 24px;
    }
}

/* Value Statement */
.value-statement {
    padding: 100px 0;
    text-align: center;
    background-color: var(--secondary);
}

.large-text {
    font-size: 36px;
    font-weight: 600;
    max-width: 1000px;
    margin: 0 auto 50px;
    line-height: 1.4;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: rgba(0, 46, 61, 0.95);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(46, 139, 139, 0.25), transparent 70%);
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}

.services .section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--white);
    position: relative;
    padding-bottom: 18px;
    font-weight: 700;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%;
}

.services .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--gold));
    border-radius: 3px;
}

.service-card {
    background: linear-gradient(145deg, rgba(0, 70, 90, 0.8) 0%, rgba(0, 46, 61, 0.95) 100%);
    padding: 40px 35px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    margin: 0 auto;
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 188, 0, 0.2);
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 25px;
    line-height: 1.4;
    position: relative;
    padding-bottom: 15px;
    color: var(--gold);
    font-weight: 600;
    min-height: auto;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--gold);
}

.client-name {
    color: var(--light);
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 16px;
    letter-spacing: 1px;
    opacity: 1;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.service-card:hover .client-name {
    color: var(--accent);
    transform: translateY(-2px);
}

.service-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--white);
    position: relative;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.5px;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 8px 0;
    margin-top: auto;
    border-bottom: 1px solid rgba(255, 188, 0, 0.3);
}

.service-link::after {
    content: '→';
    margin-left: 8px;
    transition: all 0.3s ease;
    font-size: 18px;
    color: var(--gold);
}

.service-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.service-link:hover::after {
    margin-left: 15px;
}

@media (max-width: 992px) {
    .services .container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-card h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .services {
        padding: 70px 0;
    }
    
    .services .container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .client-name {
        margin-bottom: 25px;
    }
}

/* Metrics Section - Modern Design */
.metrics {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 46, 61, 0.95), rgba(0, 46, 61, 0.85));
    position: relative;
    overflow: hidden;
}

.metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.svg');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.metrics::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(46, 139, 139, 0.05) 0%, transparent 70%);
    z-index: 1;
}

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

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

.metric {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 30px 20px;
    background: linear-gradient(145deg, rgba(0, 70, 90, 0.4) 0%, rgba(0, 46, 61, 0.6) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0.4);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.metric:hover::before {
    transform: scaleX(1);
}

.metric h2 {
    font-size: 64px;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    line-height: 1;
}

.metric h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: width 0.3s ease, background-color 0.3s ease;
}

.metric:hover h2::after {
    width: 60px;
    background-color: var(--gold);
}

.metric p {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-top: 20px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.metric:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 188, 0, 0.1);
}

.metric:hover p {
    color: var(--gold);
}

@media (max-width: 992px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .metric h2 {
        font-size: 54px;
    }
    
    .metric p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .metrics {
        padding: 80px 0;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 40px auto 0;
    }
    
    .metric {
        padding: 25px 15px;
    }
    
    .metric h2 {
        font-size: 48px;
    }
    
    .metric p {
        font-size: 15px;
        margin-top: 15px;
    }
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-bottom: 0;
    position: relative;
    z-index: 10;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-logo a {
    display: inline-block;
}

.footer-logo img {
    height: 35px;
    width: auto;
}

.footer-mantra p {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--gold);
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding-top: 10px;
}

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

.social-links a {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    color: var(--gold);
    transform: translateY(-3px) scale(1.1);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Add new footer content sections */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
    letter-spacing: 1px;
    position: relative;
}

.footer-column h4:after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--teal);
    margin: 8px 0 0;
}

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

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
    padding: 3px 0;
}

.footer-column a:hover {
    color: var(--gold);
    padding-left: 6px;
    transform: translateY(-2px);
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-contact p:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--gold);
    font-size: 14px;
}

.footer-subscribe {
    margin-top: 15px;
}

.footer-subscribe form {
    display: flex;
    margin-top: 15px;
}

.footer-subscribe input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    font-size: 13px;
    color: var(--white);
    border-radius: 4px 0 0 4px;
    flex-grow: 1;
    outline: none;
    transition: all 0.3s ease;
}

.footer-subscribe input:focus {
    border-color: var(--teal);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(0, 183, 195, 0.2);
}

.footer-subscribe button {
    background-color: var(--gold);
    color: var(--primary-dark);
    border: none;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-subscribe button:hover {
    background-color: var(--accent);
}

/* Update responsive styles for footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 20px;
    }
    
    .large-text {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 28px;
    }
    
    .services .container {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .large-text {
        font-size: 24px;
    }
    
    .metric h2 {
        font-size: 48px;
    }
}

/* Matrix Page Styles - Enhanced */
.matrix-hero {
    position: relative;
    background: linear-gradient(rgba(46, 139, 139, 0.85), rgba(46, 139, 139, 0.95)), url('../images/hero-bg.svg');
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-particles:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 25%);
    animation: particlesFloat 20s infinite linear;
}

@keyframes particlesFloat {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
    100% {
        background-position: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    }
}

.matrix-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
}

.hero-subtitle-text {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    letter-spacing: 2px;
    color: var(--gold);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 10;
}

.hero-scroll-indicator span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.8;
}

.hero-scroll-indicator i {
    font-size: 24px;
    color: var(--gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Matrix Introduction Section */
.matrix-intro {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--secondary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.matrix-intro:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.03) 75%, transparent 75%);
    background-size: 100px 100px;
    opacity: 0.1;
    z-index: 1;
}

.matrix-intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.section-tag {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.text-highlight {
    color: var(--gold);
    position: relative;
}

.text-highlight:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
}

.matrix-intro-text {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.8;
}

.pillars-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.pillar-card {
    background: rgba(0, 46, 61, 0.3);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pillar-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 188, 0, 0.2);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(255, 188, 0, 0.3);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(10deg);
}

.pillar-icon i {
    font-size: 32px;
    color: var(--primary-dark);
}

.pillar-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--gold);
}

.pillar-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* Timeline Section */
.matrix-timeline {
    padding: 120px 0;
    background: var(--primary-dark);
    position: relative;
    text-align: center;
}

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

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), rgba(46, 139, 139, 0.5));
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    width: 100%;
    z-index: 2;
}

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

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 0 5px rgba(255, 188, 0, 0.2);
}

.timeline-content {
    width: calc(50% - 50px);
    background: rgba(0, 46, 61, 0.3);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-content:before {
    content: '';
    position: absolute;
    top: 30px;
    width: 30px;
    height: 3px;
    background: var(--gold);
}

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

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

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 188, 0, 0.15);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 188, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid var(--gold);
}

.timeline-icon i {
    font-size: 24px;
    color: var(--gold);
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold);
}

.timeline-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.timeline-content .highlight {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(255, 188, 0, 0.1);
    border-left: 3px solid var(--gold);
    font-weight: 600;
    margin-top: 10px;
}

.timeline-content ul {
    padding-left: 20px;
    margin-top: 15px;
}

.timeline-content li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 5px;
}

.response-time, .experience-counter {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.minutes, .years {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    color: var(--gold);
    line-height: 1;
}

.text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.matrix-formula {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.formula-item {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.formula-sign {
    font-size: 24px;
    color: var(--gold);
}

.formula-result {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
}

/* Matrix Showcase Section */
.matrix-showcase {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--primary-dark) 0%, rgba(46, 139, 139, 0.2) 100%);
    position: relative;
    overflow: hidden;
}

.matrix-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 188, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.matrix-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(46, 139, 139, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.showcase-image {
    position: relative;
    border-radius: 10px;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.showcase-image:hover {
    transform: translateY(-10px);
}

.showcase-details {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.detail-block {
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 3px solid #1e5799;
    transition: all 0.3s ease;
}

.detail-block:hover {
    border-left-color: #fbbc05;
    transform: translateX(5px);
}

.detail-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #1e5799;
}

.detail-block h3 i {
    margin-right: 12px;
    color: #fbbc05;
    font-size: 22px;
    background: rgba(251, 188, 5, 0.1);
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
}

.showcase-list {
    list-style: none;
    margin-bottom: 40px;
}

.showcase-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Lato', 'Poppins', sans-serif;
    position: relative;
    padding-left: 28px;
    opacity: 0;
    transform: translateX(-20px);
    animation: showcaseListFadeIn 0.8s forwards;
}

.showcase-list li:nth-child(1) { animation-delay: 0.1s; }
.showcase-list li:nth-child(2) { animation-delay: 0.3s; }
.showcase-list li:nth-child(3) { animation-delay: 0.5s; }
.showcase-list li:nth-child(4) { animation-delay: 0.7s; }

@keyframes showcaseListFadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.showcase-list i {
    color: var(--gold);
    font-size: 18px;
    position: absolute;
    left: 0;
}

.showcase-text .btn-primary {
    margin-top: 10px;
    font-size: 16px;
    padding: 14px 28px;
    box-shadow: 0 4px 15px rgba(255, 188, 0, 0.3);
    position: relative;
    overflow: hidden;
    font-weight: 700;
    letter-spacing: 1px;
}

.showcase-text .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.6s ease;
}

.showcase-text .btn-primary:hover::before {
    left: 100%;
}

.showcase-visual {
    flex: 1;
    min-width: 400px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.matrix-diagram {
    width: 450px;
    height: 450px;
    position: relative;
    transition: all 0.5s ease;
}

.matrix-diagram::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0;
    animation: pulseCircle 3s infinite alternate;
}

@keyframes pulseCircle {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.matrix-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    position: absolute;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-family: 'Anton', 'Poppins', sans-serif;
    border: 2px solid transparent;
    z-index: 3;
}

.matrix-circle.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.matrix-circle.truth {
    background: var(--gold);
    color: var(--primary-dark);
    top: 30px;
    left: 50%;
    transform: translateX(-50%) scale(0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.matrix-circle.trust {
    background: var(--secondary);
    bottom: 30px;
    left: 30px;
    border-color: rgba(255, 255, 255, 0.2);
}

.matrix-circle.traffic {
    background: var(--accent);
    bottom: 30px;
    right: 30px;
    border-color: rgba(255, 255, 255, 0.2);
}

.matrix-circle.truth.active {
    transform: translateX(-50%) scale(1);
}

.matrix-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    z-index: 4;
}

.matrix-circle.truth:hover {
    transform: translateX(-50%) scale(1.1);
}

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

.connection {
    position: absolute;
    height: 3px;
    background: linear-gradient(to right, rgba(46, 139, 139, 0.5), rgba(255, 188, 0, 0.5));
    opacity: 0;
    transition: all 0.8s ease;
    box-shadow: 0 0 10px rgba(46, 139, 139, 0.3);
    overflow: hidden;
}

.connection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-100%);
    animation: connectionFlow 3s infinite;
}

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

.connection:after {
    content: '';
    position: absolute;
    top: -3px;
    right: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold), 0 0 20px rgba(255, 188, 0, 0.5);
}

.connection.active {
    opacity: 1;
}

.connection.c1 {
    width: 200px;
    transform: rotate(120deg);
    transform-origin: left center;
    top: 100px;
    left: 130px;
}

.connection.c2 {
    width: 200px;
    transform: rotate(60deg);
    transform-origin: right center;
    top: 100px;
    right: 130px;
}

.connection.c3 {
    width: 220px;
    bottom: 100px;
    left: 115px;
}

/* Matrix Testimonials */
.matrix-testimonials {
    padding: 120px 0;
    background: var(--primary-dark);
    text-align: center;
}

.testimonials-slider {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}

.testimonial-card {
    background: rgba(46, 139, 139, 0.1);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.testimonial-icon {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 15px;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 30px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

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

.author-info {
    text-align: center;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--gold);
}

.author-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.nav-dots {
    display: flex;
    gap: 10px;
}

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

.dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

.nav-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: var(--gold);
    color: var(--primary-dark);
    border-color: var(--gold);
}

/* Enhanced CTA for Matrix */
.matrix-cta {
    background: linear-gradient(135deg, rgba(46, 139, 139, 0.9) 0%, rgba(0, 46, 61, 0.95) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.matrix-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.svg');
    background-size: cover;
    opacity: 0.07;
    z-index: 0;
    animation: slowZoom 30s infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

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

.cta-content h2 {
    font-family: 'Anton', 'Poppins', sans-serif;
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.cta-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 188, 0, 0.5);
}

.cta-content p {
    font-family: 'Lato', 'Poppins', sans-serif;
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn-primary {
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 20px rgba(255, 188, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    font-weight: 700;
    border: 2px solid var(--gold);
}

.cta-content .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 188, 0, 0.4);
    background-color: transparent;
    color: var(--gold);
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.cta-particles:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 25%);
    animation: particlesFloat 20s infinite linear;
}

@media (max-width: 768px) {
    .matrix-cta {
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .matrix-cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .cta-content .btn-primary {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* Responsive styles for Matrix page */
@media (max-width: 992px) {
    .matrix-intro, .matrix-timeline, .matrix-showcase, .matrix-testimonials {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content:before,
    .timeline-item:nth-child(even) .timeline-content:before {
        left: -30px;
        right: auto;
    }
    
    .matrix-circle {
        width: 100px;
        height: 100px;
        font-size: 16px;
    }
    
    .showcase-text, .showcase-visual {
        min-width: 100%;
    }
    
    .showcase-visual {
        margin-top: 30px;
    }
    
    .matrix-diagram {
        width: 350px;
        height: 350px;
    }
    
    .hero-subtitle-text {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .matrix-intro, .matrix-timeline, .matrix-showcase, .matrix-testimonials {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .matrix-intro-text {
        font-size: 16px;
    }
    
    .pillar-card {
        padding: 30px 20px;
        min-width: 100%;
    }
    
    .pillar-icon {
        width: 70px;
        height: 70px;
    }
    
    .pillar-icon i {
        font-size: 28px;
    }
    
    .timeline-content {
        padding: 25px;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
    }
    
    .timeline-icon i {
        font-size: 20px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
    
    .hero-subtitle-text {
        font-size: 24px;
    }
    
    .matrix-subtitle {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .matrix-intro, .matrix-timeline, .matrix-showcase, .matrix-testimonials {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .timeline-content {
        padding: 20px;
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
    
    .timeline:before {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
        width: 16px;
        height: 16px;
    }
    
    .timeline-content h3 {
        font-size: 18px;
    }
    
    .matrix-diagram {
        width: 300px;
        height: 300px;
    }
    
    .matrix-circle {
        width: 80px;
        height: 80px;
        font-size: 14px;
    }
    
    .hero-subtitle-text {
        font-size: 20px;
    }
    
    .matrix-subtitle {
        gap: 8px;
    }
}

/* Add missing services-grid styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

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

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Makers Page Styles - Modern Design */
.makers-hero {
    position: relative;
    background: linear-gradient(rgba(0, 46, 61, 0.7), rgba(0, 46, 61, 0.85)), url('../images/hero-bg.svg');
    overflow: hidden;
}

.makers-hero .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.makers-hero .hero-particles:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 25%);
    animation: particlesFloat 20s infinite linear;
}

/* Modern Journey Section */
.journey-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--primary-dark) 0%, rgba(26, 69, 84, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.journey-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(46, 139, 139, 0.03) 25%, transparent 25%, transparent 50%, rgba(46, 139, 139, 0.03) 50%, rgba(46, 139, 139, 0.03) 75%, transparent 75%);
    background-size: 100px 100px;
    opacity: 0.1;
    z-index: 0;
}

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

.journey-section .section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--white);
    position: relative;
    padding-bottom: 18px;
    font-weight: 700;
    font-family: 'Anton', 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.journey-section .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--secondary));
    border-radius: 3px;
}

.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 80px auto 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.journey-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 35px;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), rgba(104, 176, 227, 0.5));
    z-index: 1;
}

.journey-step {
    position: relative;
    padding-left: 100px;
    background: rgba(0, 46, 61, 0.2);
    border-radius: 16px;
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.journey-step:hover {
    transform: translateY(-10px) translateX(5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 188, 0, 0.2);
}

.journey-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), #e6a800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 20px;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(0, 46, 61, 0.6), 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.journey-step:hover .journey-icon {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 0 10px rgba(0, 46, 61, 0.7), 0 15px 25px rgba(0, 0, 0, 0.3);
}

.journey-icon i {
    font-size: 28px;
    color: var(--primary-dark);
}

.journey-step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold);
    font-family: 'Anton', 'Poppins', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.journey-step:hover h3 {
    transform: translateY(-3px);
}

.journey-step p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Lato', 'Poppins', sans-serif;
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, rgba(26, 69, 84, 0.9) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.team-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(104, 176, 227, 0.05) 0%, transparent 70%);
    animation: pulse 6s infinite alternate;
    z-index: 0;
}

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

.team-section .section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--white);
    position: relative;
    padding-bottom: 18px;
    font-weight: 700;
    font-family: 'Anton', 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.team-section .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--secondary));
    border-radius: 3px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 46, 61, 0.9) 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    padding-bottom: 30px;
    position: relative;
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 188, 0, 0.1);
}

.team-member:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.team-member:hover:before {
    transform: scaleX(1);
}

.member-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    aspect-ratio: 1;
}

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

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

.member-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    justify-content: center;
    gap: 15px;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

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

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

.member-social a:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

.team-member h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.member-role {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.member-quote {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    padding: 0 25px;
    font-style: italic;
}

/* Mantra Section */
.mantra-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--primary-dark) 0%, rgba(46, 139, 139, 0.4) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.mantra-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 188, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(46, 139, 139, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.mantra-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.mantra-section .section-title {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--white);
    font-family: 'Anton', 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.mantra-section .text-highlight {
    color: var(--gold);
    position: relative;
}

.mantra-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    font-family: 'Lato', 'Poppins', sans-serif;
}

.mantra-pillars {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.mantra-pillar {
    background: rgba(0, 46, 61, 0.6);
    border-radius: 16px;
    padding: 35px 25px;
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mantra-pillar:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 188, 0, 0.1);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(255, 188, 0, 0.3);
}

.pillar-icon:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--gold);
    top: 0;
    left: 0;
    opacity: 0.3;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.mantra-pillar:hover .pillar-icon {
    transform: scale(1.1) rotate(10deg);
}

.mantra-pillar:hover .pillar-icon:after {
    transform: scale(1.3);
    opacity: 0.6;
}

.pillar-icon i {
    font-size: 32px;
    color: var(--primary-dark);
}

.mantra-pillar h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold);
    font-family: 'Anton', 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.mantra-pillar p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
}

/* Makers CTA Section */
.makers-cta {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(26, 69, 84, 0.9) 0%, rgba(0, 46, 61, 0.95) 100%);
    overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.makers-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.svg');
    background-size: cover;
    opacity: 0.07;
    z-index: 0;
    animation: slowZoom 20s infinite alternate;
}

.makers-cta .cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.makers-cta h2 {
    font-family: 'Anton', 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 1px;
}

.makers-cta p {
    font-family: 'Lato', 'Poppins', sans-serif;
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.makers-cta .btn-primary {
    font-size: 16px;
    padding: 16px 38px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(255, 188, 0, 0.3);
    transition: all 0.4s ease;
}

.makers-cta .btn-primary:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(255, 188, 0, 0.4);
}

.makers-cta .cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.makers-cta .cta-particles:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 188, 0, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(46, 139, 139, 0.05) 0%, transparent 25%);
    animation: pulseLight 8s infinite alternate;
}

@keyframes pulseLight {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Responsive styles for makers page */
@media (max-width: 992px) {
    .journey-section, .team-section, .mantra-section, .makers-cta {
        padding: 80px 0;
    }
    
    .journey-section .section-title,
    .team-section .section-title,
    .mantra-section .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .journey-step {
        padding-left: 80px;
        padding-right: 25px;
        padding-top: 25px;
        padding-bottom: 25px;
    }
    
    .journey-icon {
        width: 60px;
        height: 60px;
    }
    
    .journey-icon i {
        font-size: 24px;
    }
    
    .journey-step h3 {
        font-size: 22px;
    }
    
    .mantra-text {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .pillar-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .pillar-icon i {
        font-size: 28px;
    }
    
    .makers-cta h2 {
        font-size: 38px;
    }
    
    .makers-cta p {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .journey-section, .team-section, .mantra-section, .makers-cta {
        padding: 60px 0;
    }
    
    .journey-section .section-title,
    .team-section .section-title,
    .mantra-section .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .journey-timeline {
        margin-top: 50px;
    }
    
    .journey-step {
        padding-left: 70px;
    }
    
    .journey-step h3 {
        font-size: 20px;
    }
    
    .journey-step p {
        font-size: 15px;
    }
    
    .mantra-pillar {
        min-width: 220px;
        padding: 25px 20px;
    }
    
    .pillar-icon {
        width: 60px;
        height: 60px;
    }
    
    .pillar-icon i {
        font-size: 24px;
    }
    
    .mantra-pillar h3 {
        font-size: 20px;
    }
    
    .makers-cta h2 {
        font-size: 32px;
    }
    
    .makers-cta p {
        font-size: 16px;
    }
    
    .makers-cta .btn-primary {
        padding: 14px 28px;
    }
}

@media (max-width: 576px) {
    .journey-section, .team-section, .mantra-section, .makers-cta {
        padding: 50px 0;
    }
    
    .journey-section .section-title,
    .team-section .section-title,
    .mantra-section .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .journey-timeline {
        margin-top: 40px;
    }
    
    .journey-timeline:before {
        left: 25px;
    }
    
    .journey-step {
        padding-left: 60px;
        padding-right: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .journey-icon {
        width: 50px;
        height: 50px;
        top: 15px;
    }
    
    .journey-icon i {
        font-size: 20px;
    }
    
    .journey-step h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .journey-step p {
        font-size: 14px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .mantra-text {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .mantra-pillar {
        min-width: 100%;
    }
    
    .makers-cta h2 {
        font-size: 28px;
    }
    
    .makers-cta p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .makers-cta .btn-primary {
        font-size: 14px;
        padding: 12px 24px;
    }
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--primary-dark) 0%, rgba(26, 69, 84, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(46, 139, 139, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    position: relative;
    z-index: 2;
}

.contact-info {
    padding: 40px;
    background: rgba(0, 46, 61, 0.4);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-info .section-title {
    font-size: 34px;
    margin-bottom: 25px;
    text-align: left;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
    font-family: 'Anton', 'Poppins', sans-serif;
    letter-spacing: 1px;
    display: inline-block;
}

.contact-info .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--secondary));
    border-radius: 3px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-family: 'Lato', 'Poppins', sans-serif;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #e6a800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255, 188, 0, 0.3);
    transition: all 0.4s ease;
}

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

.contact-icon i {
    font-size: 24px;
    color: var(--primary-dark);
}

.contact-text h3 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 5px;
    font-family: 'Anton', 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.contact-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.social-links-large h3 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 20px;
    font-family: 'Anton', 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Form Styles */
.contact-form {
    padding: 40px;
    background: rgba(0, 46, 61, 0.4);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-form .section-title {
    font-size: 34px;
    margin-bottom: 25px;
    text-align: left;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
    font-family: 'Anton', 'Poppins', sans-serif;
    letter-spacing: 1px;
    display: inline-block;
}

.contact-form .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--secondary));
    border-radius: 3px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 500;
    font-family: 'Lato', 'Poppins', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--white);
    font-family: 'Lato', 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 188, 0, 0.1);
    outline: none;
}

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

.btn-full {
    width: 100%;
    padding: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.btn-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 188, 0, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, rgba(26, 69, 84, 0.9) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.faq-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 188, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(46, 139, 139, 0.05) 0%, transparent 50%);
    z-index: 0;
}

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

.faq-section .section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--white);
    position: relative;
    padding-bottom: 18px;
    font-weight: 700;
    font-family: 'Anton', 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.faq-section .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--secondary));
    border-radius: 3px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(0, 46, 61, 0.4);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 188, 0, 0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question h3 {
    color: var(--gold);
}

.toggle-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.toggle-icon i {
    color: var(--gold);
    font-size: 14px;
    transition: all 0.3s ease;
}

.faq-item:hover .toggle-icon {
    background: rgba(255, 188, 0, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.8s ease-in-out;
}

.faq-answer p {
    padding: 25px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.7;
    font-family: 'Lato', 'Poppins', sans-serif;
}

/* Responsive styles for contact page */
@media (max-width: 992px) {
    .contact-hero .hero-title {
        font-size: 48px;
    }
    
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px;
    }
    
    .contact-info .section-title,
    .contact-form .section-title {
        font-size: 28px;
    }
    
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-section .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero .hero-title {
        font-size: 42px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        max-width: 85%;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        min-height: 50vh;
        padding: 120px 0 80px;
    }
    
    .contact-hero .hero-title {
        font-size: 36px;
    }
    
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-info,
    .contact-form {
        padding: 25px 20px;
    }
    
    .contact-info .section-title,
    .contact-form .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-answer p {
        padding: 20px;
        font-size: 14px;
    }
}

/* Projects Page Styles - Modern Design */
.projects-hero {
    position: relative;
    background: linear-gradient(rgba(0, 46, 61, 0.8), rgba(104, 176, 227, 0.7)), url('../images/hero-bg.svg');
    overflow: hidden;
}

.projects-hero .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.projects-hero .hero-particles:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 25%);
    animation: particlesFloat 20s infinite linear;
}

.projects-hero .hero-title {
    font-family: 'Anton', 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.projects-hero .hero-description {
    font-family: 'Lato', 'Poppins', sans-serif;
}

/* Project Section Styles */
.project-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.project-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(46, 139, 139, 0.05) 0%, transparent 70%);
    z-index: 0;
    animation: pulse 8s infinite alternate;
}

.alt-section {
    background: rgba(26, 69, 84, 0.05);
}

.alt-section:before {
    background: radial-gradient(circle at center, rgba(255, 188, 0, 0.05) 0%, transparent 70%);
}

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

.project-title {
    font-family: 'Anton', 'Poppins', sans-serif;
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
    text-align: center;
}

.project-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--secondary));
    border-radius: 3px;
}

.project-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    font-family: 'Lato', 'Poppins', sans-serif;
}

.project-meta p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.project-meta span {
    color: var(--gold);
    font-weight: 600;
    margin-left: 5px;
}

.project-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    position: relative;
    z-index: 2;
    align-items: center;
}

.project-details {
    background: rgba(0, 46, 61, 0.3);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-details:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 188, 0, 0.1);
}

.detail-section {
    margin-bottom: 30px;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section h3 {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 15px;
    font-family: 'Anton', 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-section h3 i {
    font-size: 18px;
    width: 30px;
    height: 30px;
    background: rgba(255, 188, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.project-details:hover .detail-section h3 i {
    background: var(--gold);
    color: var(--primary-dark);
    transform: rotate(10deg);
}

.detail-section p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-family: 'Lato', 'Poppins', sans-serif;
}

.detail-section ul {
    list-style: none;
    padding-left: 5px;
}

.detail-section ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Lato', 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-section ul li i {
    color: var(--gold);
    font-size: 14px;
}

.project-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 90%;
    margin: 0 auto;
}

.project-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 139, 139, 0.2) 0%, rgba(0, 46, 61, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: all 0.4s ease;
}

.project-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.project-image:hover:after {
    opacity: 1;
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

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

/* Projects CTA Section */
.projects-cta {
    background: linear-gradient(135deg, rgba(0, 46, 61, 0.9) 0%, rgba(46, 139, 139, 0.8) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.projects-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.svg');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.projects-cta .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.projects-cta h2 {
    font-family: 'Anton', 'Poppins', sans-serif;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 1px;
}

.projects-cta p {
    font-family: 'Lato', 'Poppins', sans-serif;
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.projects-cta .btn-primary {
    font-size: 16px;
    padding: 16px 38px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(255, 188, 0, 0.3);
    transition: all 0.4s ease;
}

.projects-cta .btn-primary:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(255, 188, 0, 0.4);
}

.projects-cta .cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Responsive styles for projects page */
@media (max-width: 992px) {
    .project-section {
        padding: 80px 0;
    }
    
    .project-title {
        font-size: 30px;
    }
    
    .project-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .project-details {
        padding: 30px;
    }
    
    .detail-section h3 {
        font-size: 20px;
    }
    
    .projects-cta h2 {
        font-size: 36px;
    }
    
    .projects-cta p {
        font-size: 18px;
    }
    
    .alt-section .project-image {
        order: 1;
    }
    
    .alt-section .project-details {
        order: 2;
    }
}

@media (max-width: 768px) {
    .project-section {
        padding: 60px 0;
    }
    
    .project-header {
        margin-bottom: 50px;
    }
    
    .project-title {
        font-size: 26px;
    }
    
    .project-meta {
        gap: 20px;
        flex-direction: column;
    }
    
    .project-details {
        padding: 25px;
    }
    
    .detail-section {
        margin-bottom: 25px;
    }
    
    .detail-section h3 {
        font-size: 18px;
    }
    
    .detail-section p {
        font-size: 15px;
    }
    
    .projects-cta {
        padding: 70px 0;
    }
    
    .projects-cta h2 {
        font-size: 30px;
    }
    
    .projects-cta p {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .project-section {
        padding: 50px 0;
    }
    
    .project-header {
        margin-bottom: 40px;
    }
    
    .project-title {
        font-size: 24px;
    }
    
    .project-details {
        padding: 20px;
    }
    
    .detail-section h3 {
        font-size: 17px;
    }
    
    .detail-section p {
        font-size: 14px;
    }
    
    .detail-section ul li {
        font-size: 14px;
    }
    
    .projects-cta {
        padding: 50px 0;
    }
    
    .projects-cta h2 {
        font-size: 26px;
    }
    
    .projects-cta p {
        font-size: 15px;
        margin-bottom: 25px;
    }
}

/* IoT Solutions Page Styles */
.page-iot .hero {
    background: linear-gradient(135deg, #0a2540, #1e5799);
}

.page-iot .header {
    background-color: rgba(13, 46, 56, 0.95);
}

.page-iot .main-nav a.active {
    color: #fbbc05;
}

.page-iot .main-nav a.active::after {
    width: 100%;
    background-color: #fbbc05;
}

.iot-hero {
    position: relative;
    overflow: hidden;
}

/* IoT Overview Section */
.iot-overview {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.iot-overview .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.tech-icon {
    text-align: center;
    width: 120px;
    padding: 20px 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tech-icon:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.tech-icon i {
    font-size: 36px;
    margin-bottom: 10px;
    color: #1e5799;
}

.tech-icon span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

/* IoT Services Section */
.iot-services {
    padding: 80px 0;
    background-color: #fff;
}

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

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-icon {
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 40px;
    color: #1e5799;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-features {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.service-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.service-features i {
    color: #1e5799;
    margin-right: 10px;
    margin-top: 4px;
}

/* Technical Showcase Section */
.technical-showcase {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.showcase-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.showcase-image {
    position: relative;
    border-radius: 10px;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.showcase-image:hover {
    transform: translateY(-10px);
}

.showcase-details {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.detail-block {
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 3px solid #1e5799;
    transition: all 0.3s ease;
}

.detail-block:hover {
    border-left-color: #fbbc05;
    transform: translateX(5px);
}

.detail-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #1e5799;
}

.detail-block h3 i {
    margin-right: 12px;
    color: #fbbc05;
    font-size: 22px;
    background: rgba(251, 188, 5, 0.1);
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
}

.code-representation {
    background-color: #1a2233;
    color: #f1f1f1;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    overflow-x: auto;
    position: relative;
    border: 1px solid #364156;
}

.code-representation:before {
    content: 'Assembly';
    position: absolute;
    top: 0;
    right: 10px;
    background: #fbbc05;
    color: #1a2233;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 0 0 5px 5px;
}

.code-representation pre {
    margin: 0;
    white-space: pre-wrap;
}

.code-representation code {
    font-family: 'Consolas', 'Courier New', monospace;
    line-height: 1.8;
    color: #e0e0e0;
    font-size: 14px;
}

.diagram-node {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
    transition: all 0.5s ease;
    opacity: 0;
    transform: scale(0.8);
}

.diagram-node.active {
    opacity: 1;
    transform: scale(1);
}

.diagram-node i {
    font-size: 24px;
    color: #1e5799;
    margin-bottom: 8px;
}

.diagram-node span {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

.diagram-node.central {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 140px;
    height: 140px;
    z-index: 2;
}

.diagram-node.central.active {
    transform: translate(-50%, -50%) scale(1);
}

.diagram-node.n1 {
    top: 20%;
    left: 20%;
}

.diagram-node.n2 {
    top: 20%;
    right: 20%;
}

.diagram-node.n3 {
    bottom: 20%;
    right: 20%;
}

.diagram-node.n4 {
    bottom: 20%;
    left: 20%;
}

.diagram-connections {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.diagram-connections:before,
.diagram-connections:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: rgba(30, 87, 153, 0.2);
    transform-origin: top left;
}

.diagram-connections:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(rgba(10, 97, 125, 0.1), transparent);
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulseCircle 4s ease-in-out infinite;
}

/* CTA Section */
.iot-cta {
    background: linear-gradient(135deg, #0a2540, #1e5799);
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
    .showcase-content {
        grid-template-columns: 1fr;
    }
    
    .rd-content {
        grid-template-columns: 1fr;
    }
    
    .tech-diagram {
        margin-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    .tech-showcase {
        gap: 20px;
    }
    
    .tech-icon {
        width: 100px;
    }
    
    .case-study-details {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .showcase-content {
        gap: 20px;
    }
    
    .diagram-node {
        width: 90px;
        height: 90px;
    }
    
    .diagram-node.central {
        width: 110px;
        height: 110px;
    }
}

.tech-diagram {
    position: relative;
    height: 450px;
    margin: 20px auto;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    padding: 20px;
}

.diagram-node {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: scale(0.8);
    border: 2px solid transparent;
    z-index: 2;
}

.diagram-node.active {
    opacity: 1;
    transform: scale(1);
    border-color: #fbbc05;
}

.diagram-node i {
    font-size: 32px;
    color: #1e5799;
    margin-bottom: 10px;
    background: rgba(30, 87, 153, 0.1);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
}

.diagram-node span {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
}

.diagram-node.central {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 150px;
    height: 150px;
    z-index: 5;
    background: linear-gradient(135deg, #ffffff, #f2f8ff);
}

.diagram-node.central.active {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 8px 30px rgba(30, 87, 153, 0.25);
}

.diagram-node.central i {
    font-size: 38px;
    background: rgba(251, 188, 5, 0.15);
    width: 80px;
    height: 80px;
    line-height: 80px;
    color: #0a617d;
}

.diagram-node.n1 {
    top: 15%;
    left: 20%;
}

.diagram-node.n2 {
    top: 15%;
    right: 20%;
}

.diagram-node.n3 {
    bottom: 15%;
    right: 20%;
}

.diagram-node.n4 {
    bottom: 15%;
    left: 20%;
}

.diagram-connections {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.diagram-connections:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85%;
    height: 85%;
    border-radius: 50%;
    border: 2px dashed rgba(30, 87, 153, 0.3);
    transform: translate(-50%, -50%);
}

.diagram-connections:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: radial-gradient(rgba(10, 97, 125, 0.1), transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulseCircle 4s ease-in-out infinite;
}

/* Enhanced Case Study Section */
.iot-case-study {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.iot-case-study::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 87, 153, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.case-study-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.case-study-content .section-tag {
    color: #1e5799;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    background: rgba(30, 87, 153, 0.1);
    padding: 5px 15px;
    border-radius: 4px;
}

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

.case-challenge,
.case-solution,
.case-results {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.case-challenge {
    border-top-color: #f39c12;
}

.case-solution {
    border-top-color: #2ecc71;
}

.case-results {
    border-top-color: #3498db;
}

.case-challenge:hover,
.case-solution:hover,
.case-results:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.case-study-details h3 {
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #1e5799;
}

.case-challenge h3 i {
    color: #f39c12;
}

.case-solution h3 i {
    color: #2ecc71;
}

.case-results h3 i {
    color: #3498db;
}

.case-study-details h3 i {
    margin-right: 12px;
    font-size: 22px;
    background: rgba(251, 188, 5, 0.1);
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
}

.case-results ul {
    padding-left: 0;
    list-style: none;
    margin-top: 20px;
}

.case-results li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.case-results i {
    color: #3498db;
    margin-right: 12px;
    margin-top: 4px;
}

/* Enhanced R&D Section */
.rd-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.rd-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(30, 87, 153, 0.05) 100%);
    z-index: 0;
}

.rd-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.rd-text {
    padding-right: 40px;
}

.rd-text .section-tag {
    background: rgba(251, 188, 5, 0.15);
    color: #0a617d;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.rd-text .section-title {
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.rd-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.rd-text .btn-primary {
    margin-top: 15px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rd-text .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(30, 87, 153, 0.2);
}

.rd-visual {
    position: relative;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 992px) {
    .rd-content {
        grid-template-columns: 1fr;
    }
    
    .rd-text {
        padding-right: 0;
        text-align: center;
    }
    
    .rd-visual {
        margin-top: 40px;
        min-height: 500px;
    }
}

@media screen and (max-width: 576px) {
    .rd-section {
        padding: 60px 0;
    }
    
    .rd-content {
        gap: 30px;
    }
    
    .rd-text .section-title {
        font-size: 1.8rem;
    }
    
    .rd-visual {
        min-height: 400px;
    }
}

/* Form status messages */
.form-status {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

.form-status .sending {
    color: var(--white);
    background-color: rgba(104, 176, 227, 0.2);
    padding: 10px;
    border-radius: 4px;
    border-left: 4px solid var(--accent);
}

.form-status .success {
    color: #2ecc71;
    background-color: rgba(46, 204, 113, 0.1);
    padding: 10px;
    border-radius: 4px;
    border-left: 4px solid #2ecc71;
}

.form-status .error {
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.1);
    padding: 10px;
    border-radius: 4px;
    border-left: 4px solid #e74c3c;
}

/* Add this at the end of the CSS file */