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

:root {
    --primary-color: #77cccc;
    --primary-dark: #5bb3b3;
    --primary-light: #99dddd;
    --secondary-color: #ffffff;
    --accent-color: #4a9b9b;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
    --gradient-primary: linear-gradient(135deg, #77cccc 0%, #4a9b9b 100%);
    --gradient-secondary: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --shadow-light: 0 2px 10px rgba(119, 204, 204, 0.1);
    --shadow-medium: 0 5px 20px rgba(119, 204, 204, 0.2);
    --shadow-heavy: 0 10px 40px rgba(119, 204, 204, 0.3);
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

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

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

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

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

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: rgba(0, 0, 0,1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-radius 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    top: 20px;
    width: calc(100% - 40px);
    max-width: 1200px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(119, 204, 204, 0.3);
    border-radius: 50px;
}

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

.nav-logo .logo-link {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.nav-logo .logo-link:hover {
    transform: scale(1.02) !important;
}

.nav-logo .logo-img {
    height: 40px !important;
    width: auto !important;
    max-width: 150px !important;
    object-fit: contain !important;
    transition: all 0.3s ease !important;
    display: block !important;
}

.nav-logo .logo-text {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
    font-family: 'Inter', sans-serif !important;
    line-height: 1 !important;
}

.nav-logo .logo-link:hover .logo-text {
    color: #77cccc !important;
}

/* Additional fallback styles for hosting compatibility */
.nav-logo {
    display: flex !important;
    align-items: center !important;
}

.nav-logo a {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
}

.nav-logo img {
    max-height: 40px !important;
    width: auto !important;
    height: 40px !important;
}

.nav-logo span {
    color: white !important;
    font-weight: bold !important;
    margin-left: 8px !important;
}

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

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.nav-link:hover {
    color: #77cccc;
    background: rgba(119, 204, 204, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: #77cccc;
    background: rgba(119, 204, 204, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition);
}

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

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

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

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

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    background: #1a1a1a;
    overflow: hidden;
    padding-bottom: 80px;
    /* animation: heroBreath 4s ease-in-out infinite; */
}

/* @keyframes heroBreath {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.01);
    }
} */

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

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #1a1a1a url('./images/promithea_bg.jpeg') center/cover no-repeat fixed;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 26, 46, 0.4) 0%, rgba(0, 45, 74, 0.3) 50%, rgba(255, 107, 53, 0.2) 100%);
    z-index: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect x="0" y="0" width="1200" height="400" fill="%23000"/><rect x="50" y="50" width="20" height="350" fill="%23333"/><rect x="100" y="0" width="25" height="400" fill="%23444"/><rect x="150" y="20" width="18" height="380" fill="%23333"/><rect x="200" y="0" width="30" height="400" fill="%23444"/><rect x="250" y="30" width="22" height="370" fill="%23333"/><rect x="300" y="10" width="28" height="390" fill="%23444"/><rect x="350" y="50" width="20" height="350" fill="%23333"/><rect x="400" y="0" width="35" height="400" fill="%23444"/><rect x="450" y="30" width="25" height="370" fill="%23333"/><rect x="500" y="20" width="30" height="380" fill="%23444"/><rect x="550" y="0" width="22" height="400" fill="%23333"/><rect x="600" y="30" width="28" height="370" fill="%23444"/><rect x="650" y="10" width="20" height="390" fill="%23333"/><rect x="700" y="50" width="35" height="350" fill="%23444"/><rect x="750" y="0" width="25" height="400" fill="%23333"/><rect x="800" y="30" width="30" height="370" fill="%23444"/><rect x="850" y="20" width="22" height="380" fill="%23333"/><rect x="900" y="0" width="28" height="400" fill="%23444"/><rect x="950" y="30" width="20" height="370" fill="%23333"/><rect x="1000" y="10" width="35" height="390" fill="%23444"/><rect x="1050" y="50" width="25" height="350" fill="%23333"/><rect x="1100" y="0" width="30" height="400" fill="%23444"/><rect x="1150" y="30" width="22" height="370" fill="%23333"/></svg>') center bottom/cover;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 100, 150, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 80% 30%, rgba(0, 100, 150, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 50% 70%, rgba(0, 100, 150, 0.35) 0%, transparent 60%),
        radial-gradient(circle at 30% 60%, rgba(0, 100, 150, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 40%, rgba(0, 100, 150, 0.25) 0%, transparent 50%),
        linear-gradient(45deg, transparent 20%, rgba(0, 100, 150, 0.15) 50%, transparent 80%);
    z-index: 3;
    opacity: 1;
    /* animation: networkPulse 2s ease-in-out infinite; */
}

/* @keyframes networkPulse {
    0%, 100% { 
        opacity: 0.4;
        transform: scale(1);
    }
    50% { 
        opacity: 0.9;
        transform: scale(1.05);
    }
} */

.triangular-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* Additional triangle sets for fade effects */
.triangle-fade-1, .triangle-fade-2, .triangle-fade-3, .triangle-fade-4, .triangle-fade-5 {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    animation: triangleFadeInOut 6s ease-in-out infinite;
}

.triangle-fade-1 {
    top: 25%;
    left: 20%;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 60px solid rgba(0, 100, 150, 0.2);
    animation-delay: 0s;
}

.triangle-fade-2 {
    top: 45%;
    right: 25%;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 50px solid rgba(139, 92, 246, 0.25);
    animation-delay: 1.2s;
}

.triangle-fade-3 {
    bottom: 40%;
    left: 15%;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 45px solid rgba(0, 100, 150, 0.15);
    animation-delay: 2.4s;
}

.triangle-fade-4 {
    top: 70%;
    right: 15%;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 65px solid rgba(139, 92, 246, 0.2);
    animation-delay: 3.6s;
}

.triangle-fade-5 {
    top: 35%;
    left: 50%;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(0, 100, 150, 0.18);
    animation-delay: 4.8s;
}

.triangle {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0.6;
    /* animation: triangleBreath 4s ease-in-out infinite; */
}

.triangle-1 {
    top: 5%;
    left: 5%;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 80px solid rgba(0, 100, 150, 0.3);
    animation-delay: 0s;
}

.triangle-2 {
    top: 15%;
    right: 5%;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 60px solid rgba(139, 92, 246, 0.4);
    animation-delay: 1s;
}

.triangle-3 {
    bottom: 15%;
    left: 5%;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-top: 70px solid rgba(0, 100, 150, 0.25);
    animation-delay: 2s;
}

.triangle-4 {
    top: 60%;
    right: 5%;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-bottom: 90px solid rgba(139, 92, 246, 0.35);
    animation-delay: 0.5s;
}

.triangle-5 {
    bottom: 5%;
    right: 20%;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 50px solid rgba(0, 100, 150, 0.4);
    animation-delay: 1.5s;
}

/* @keyframes triangleBreath {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.1) rotate(5deg);
    }
} */

@keyframes triangleFadeInOut {
    0%, 20% { 
        opacity: 0;
        transform: scale(0.8) rotate(0deg);
    }
    30%, 70% { 
        opacity: 0.6;
        transform: scale(1) rotate(5deg);
    }
    80%, 100% { 
        opacity: 0;
        transform: scale(0.8) rotate(0deg);
    }
}

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

/* Additional triangular effects */
.triangle-1::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -25px;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 40px solid rgba(0, 100, 150, 0.2);
    /* animation: triangleFloat 3s ease-in-out infinite; */
}

.triangle-2::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -20px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 30px solid rgba(139, 92, 246, 0.3);
    /* animation: triangleFloat 3.5s ease-in-out infinite reverse; */
}

/* @keyframes triangleFloat {
    0%, 100% { 
        opacity: 0.2;
        transform: translateY(0) rotate(0deg);
    }
    50% { 
        opacity: 0.6;
        transform: translateY(-10px) rotate(10deg);
    }
} */

.hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1200px;
    margin-left: 6rem;
    padding: 0 20px 0 20px;
    margin-bottom: 0;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.event-detail i {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-text {
    max-width: 80%;
    animation: slideInUp 1s ease-out;
    text-align: left;
    position: relative;
    z-index: 20;
    padding: 0 1rem 0 0;
    opacity: 1;
    margin-left: 0.5rem;
}

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

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    line-height: 0.85;
    color: var(--text-white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    letter-spacing: 2px;
    position: relative;
    z-index: 15;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-word-1 {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 0;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 1);
    opacity: 1;
    position: relative;
    z-index: 15;
    animation: wordBreath1 4s ease-in-out infinite;
}

.hero-word-2 {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 0;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 1);
    opacity: 1;
    position: relative;
    z-index: 15;
    animation: wordBreath2 4.2s ease-in-out infinite;
}

.hero-word-3 {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 0;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 1);
    opacity: 1;
    position: relative;
    z-index: 15;
    animation: wordBreath3 4.4s ease-in-out infinite;
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 350;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 2rem 0 0 0;
    max-width: 800px;
    line-height: 1.6;
    position: relative;
    z-index: 15;
    animation: descriptionSlideIn 1.5s ease-out 0.8s both;
}

@keyframes wordBreath1 {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.9;
        transform: scale(1.02);
    }
}

@keyframes wordBreath2 {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1);
    }
    50% { 
        opacity: 0.9;
        transform: scale(1.01);
    }
}

@keyframes wordBreath3 {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.01);
    }
}

/* @keyframes textBreath {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(0, 100, 150, 0.3);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(0, 100, 150, 0.5);
        transform: scale(1.02);
    }
} */

.gradient-text {
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(119, 204, 204, 0.3);
    }
    to {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 30px rgba(119, 204, 204, 0.6);
    }
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: detailsBreath 3.5s ease-in-out infinite;
}

@keyframes detailsBreath {
    0%, 100% { 
        opacity: 0.8;
        transform: translateY(0);
    }
    50% { 
        opacity: 1;
        transform: translateY(-2px);
    }
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.event-detail i {
    color: #8b5cf6;
    font-size: 1.2rem;
    width: 20px;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
    margin-bottom: 2rem;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 10;
}

.hero-location i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
    animation: buttonsBreath 3.2s ease-in-out infinite;
}

@keyframes buttonsBreath {
    0%, 100% { 
        transform: translateY(0) scale(1);
    }
    50% { 
        transform: translateY(-3px) scale(1.02);
    }
}

.hero-buttons .btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons .btn-primary {
    background: #8b5cf6;
    color: var(--text-white);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    background: #7c3aed;
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

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

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #77cccc 0%, #4a9b9b 100%);
    text-align: center;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

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

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Horizontal Scrolling Text Section */
.scrolling-text-section {
    padding: 0;
    background: transparent;
    overflow: visible;
    position: relative;
    min-height: 180px;
    z-index: 15;
    margin: -50px 0 -70px 0;
}

.scrolling-text-container {
    position: relative;
    height: 180px;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.scrolling-text {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    contain: layout style paint;
    transform: translateZ(0);
}

.scrolling-text:first-child {
    transform: skewY(2deg);
    margin-bottom: 0;
}

.scrolling-text:last-child {
    transform: skewY(-2deg);
    margin-top: 0;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 0;
}

.banner-bg-1 {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    transform: skewY(1deg);
    width: 100%;
    left: 0;
    margin-left: 0;
}

.banner-bg-2 {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    transform: skewY(-1deg);
    width: 100%;
    left: 0;
    margin-left: 0;
}

.scrolling-text span {
    display: inline-block;
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: scrollText 60s linear infinite;
    padding: 15px 30px;
    white-space: nowrap;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
    opacity: 1;
    background: transparent;
    visibility: visible;
    transform: translateX(0);
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.text-line-1 {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    -webkit-text-fill-color: #ffffff !important;
}

.text-line-2 {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    -webkit-text-fill-color: #ffffff !important;
    animation-direction: reverse;
    animation-duration: 70s;
}

@keyframes scrollText {
    0% {
        transform: translate3d(0%, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* About Event Section */
.about-event {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--text-white);
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.about-event-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.about-event-text {
    z-index: 2;
}

.event-tag {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.event-title {
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-line-1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.title-line-2 {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.event-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.event-features {
    list-style: none;
    padding: 0;
}

.event-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.event-features i {
    color: #8b5cf6;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Rotating Image */
.about-event-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

.rotating-image-container {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotating-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: imageRotate 15s linear infinite;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
    transition: transform 0.3s ease;
}

.rotating-image:hover {
    animation-play-state: paused;
    transform: scale(1.05);
}

@keyframes imageRotate {
    0% { 
        transform: rotateZ(0deg); 
    }
    100% { 
        transform: rotateZ(360deg); 
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    z-index: 5;
}

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

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(119, 204, 204, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #77cccc 0%, #4a9d9d 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(119, 204, 204, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #77cccc 0%, #4a9d9d 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

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

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
    transition: color 0.3s ease;
}

.service-features li::before {
    content: '•';
    color: #77cccc;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.service-card:hover .service-features li {
    color: var(--text-dark);
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background: var(--secondary-color);
    position: relative;
    z-index: 5;
}

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

.feature-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(119, 204, 204, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-white);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Solutions Preview */
.solutions-preview {
    padding: 80px 0;
    background: var(--bg-light);
}

.solution-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-top: 3rem;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 400px;
}

.solution-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.solution-info h4 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    margin: 2rem 0;
}

.solution-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.solution-features i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.solution-image {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.solution-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.solution-img:hover {
    transform: scale(1.02);
}

.image-placeholder {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-white);
    animation: pulse 2s infinite;
}

.image-placeholder.large {
    width: 300px;
    height: 300px;
    font-size: 6rem;
}

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

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--text-white);
    text-align: center;
}

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

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Company Story */
.company-story {
    padding: 80px 0;
    background: var(--secondary-color);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
}

.story-text h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--text-dark);
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.story-image {
    display: none;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.mv-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--text-white);
}

/* Values */
.values {
    padding: 80px 0;
    background: var(--secondary-color);
}

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

.value-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(119, 204, 204, 0.1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--text-white);
}

/* Team */
.team {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.team-member {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-white);
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Stats */
.stats {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--text-white);
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Software Showcase */
.software-showcase {
    padding: 80px 0;
    background: var(--secondary-color);
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.software-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.software-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.software-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

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

.info-section h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(119, 204, 204, 0.2);
}

/* Case Study */
.case-study {
    padding: 80px 0;
    background: var(--bg-light);
}

.case-study-header {
    text-align: center;
    margin-bottom: 4rem;
}

.case-study-content {
    max-width: 800px;
    margin: 0 auto;
}

.case-study-section {
    margin-bottom: 3rem;
}

.case-study-section h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.challenge-points {
    margin-top: 1.5rem;
}

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

.challenge-point i {
    color: #e74c3c;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.solution-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.result-item {
    text-align: center;
    background: var(--secondary-color);
    padding: 2rem 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

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

.result-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-top: 3rem;
    border-left: 4px solid var(--primary-color);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.author-info h4 {
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Features Deep Dive */
.features-deep-dive {
    padding: 80px 0;
    background: var(--secondary-color);
}

.feature-card.detailed {
    text-align: left;
    padding: 2.5rem;
}

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

.feature-sublist li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.feature-sublist li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

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

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-methods {
    margin: 3rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-white);
}

.method-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.method-content p {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.method-content span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.social-contact {
    margin-top: 3rem;
}

.social-contact h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(119, 204, 204, 0.1);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-container {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(119, 204, 204, 0.2);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--secondary-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(119, 204, 204, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--secondary-color);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.portfolio-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.portfolio-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-image .image-placeholder {
    font-size: 3rem;
    color: #ffffff;
    opacity: 0.8;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.view-project-btn {
    background: var(--primary-color);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.view-project-btn:hover {
    background: var(--secondary-color);
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-category {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.portfolio-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.portfolio-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portfolio-card .tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.portfolio-card .tech-tag {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.coming-soon .portfolio-image {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.portfolio-card.coming-soon .btn {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Individual Project Pages */
.back-navigation {
    padding: 20px 0;
    background: var(--bg-light);
    border-bottom: 1px solid #e5e7eb;
}

.back-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

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

.project-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #77cccc 0%, #4a9b9b 100%);
    position: relative;
    overflow: hidden;
}

.project-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

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

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

.project-category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.project-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.project-header h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.project-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

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

.project-image .image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.dashboard-overview {
    padding: 80px 0;
    background: #ffffff;
}

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

.dashboard-module {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.dashboard-module:hover {
    transform: translateY(-5px);
}

.module-image {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.dashboard-module h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.dashboard-module p {
    color: var(--text-light);
    line-height: 1.6;
}

.case-study {
    padding: 80px 0;
    background: var(--bg-light);
}

.case-study-header h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.case-study-content {
    max-width: 800px;
    margin: 0 auto;
}

.case-study-section {
    margin-bottom: 4rem;
}

.case-study-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.case-study-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.challenge-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.challenge-point i {
    color: #ef4444;
    font-size: 1.2rem;
}

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

.solution-feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.solution-feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.solution-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.solution-feature p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

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

.result-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.target-audience {
    padding: 80px 0;
    background: #ffffff;
}

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

.audience-category {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.audience-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.audience-category ul {
    list-style: none;
    padding: 0;
}

.audience-category li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid #e5e7eb;
}

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

.system-demo {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.demo-placeholder {
    max-width: 600px;
    margin: 2rem auto;
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.demo-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.demo-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.demo-placeholder span {
    color: var(--text-light);
}

.technologies-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.tech-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.tech-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tech-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.key-features {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.compliance-security {
    padding: 80px 0;
    background: #ffffff;
}

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

.compliance-section {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.compliance-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.compliance-section ul {
    list-style: none;
    padding: 0;
}

.compliance-section li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.5rem;
}

.compliance-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.compliance-section li:last-child {
    border-bottom: none;
}

.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 20px;
}

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

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer social icons */
.footer .social-links {
    display: flex;
    gap: 1rem;
}

.footer .social-links a {
    color: #ffffff;
    text-decoration: none;
}

.footer .social-links i {
    color: #ffffff;
    font-size: 1.6rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        padding: 0;
        position: fixed;
    }

    .navbar.scrolled {
        top: 15px;
        left: 10px;
        width: calc(100% - 20px);
        border-radius: 25px;
        transform: none;
    }

    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

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

    .nav-logo .logo-text {
        font-size: 1.3rem !important;
        color: #ffffff !important;
    }

    .nav-menu {
        position: fixed;
        left: -100vw;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100vw;
        margin-left: 0;
        border-radius: 0;
        border: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: left 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
        padding: 2rem 0;
        z-index: 999;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        display: none;
    }

    .nav-menu.active {
        left: 0;
        visibility: visible;
        opacity: 1;
        display: flex;
    }

    /* Prevent body scroll when mobile menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-radius: 0;
        margin: 0;
    }

    .nav-link:hover {
        background: rgba(119, 204, 204, 0.2);
        transform: none;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .hero-word-1 {
        font-size: 3rem;
    }

    .hero-word-2 {
        font-size: 3rem;
    }

    .hero-word-3 {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.2rem;
        max-width: 95%;
    }

    .hero-text {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding: 0 1rem;
    }

    .hero-title {
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-location {
        font-size: 1rem;
        justify-content: center;
    }

    .hero-content {
        margin-left: 0;
        padding: 0 20px;
        display: flex;
        justify-content: center;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .triangle {
        opacity: 0.4;
    }

    .triangle-1 {
        top: 3%;
        left: 3%;
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border-bottom: 50px solid rgba(0, 100, 150, 0.3);
    }

    .triangle-2 {
        top: 10%;
        right: 3%;
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
        border-bottom: 40px solid rgba(139, 92, 246, 0.4);
    }

    .triangle-3 {
        bottom: 10%;
        left: 3%;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-top: 45px solid rgba(0, 100, 150, 0.25);
    }

    .triangle-4 {
        top: 50%;
        right: 3%;
        border-left: 28px solid transparent;
        border-right: 28px solid transparent;
        border-bottom: 55px solid rgba(139, 92, 246, 0.35);
    }

    .triangle-5 {
        bottom: 3%;
        right: 15%;
        border-left: 18px solid transparent;
        border-right: 18px solid transparent;
        border-top: 35px solid rgba(0, 100, 150, 0.4);
    }

    .triangle-fade-1 {
        top: 20%;
        left: 15%;
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
        border-bottom: 40px solid rgba(0, 100, 150, 0.2);
    }

    .triangle-fade-2 {
        top: 40%;
        right: 20%;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-top: 35px solid rgba(139, 92, 246, 0.25);
    }

    .triangle-fade-3 {
        bottom: 35%;
        left: 10%;
        border-left: 18px solid transparent;
        border-right: 18px solid transparent;
        border-bottom: 30px solid rgba(0, 100, 150, 0.15);
    }

    .triangle-fade-4 {
        top: 65%;
        right: 10%;
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border-top: 45px solid rgba(139, 92, 246, 0.2);
    }

    .triangle-fade-5 {
        top: 30%;
        left: 45%;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 25px solid rgba(0, 100, 150, 0.18);
    }

    .about-event-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-event-text {
        text-align: center;
    }

    .event-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .event-features li {
        justify-content: center;
        text-align: center;
    }

    .about-event-visual {
        height: 300px;
        order: -1;
    }

    .rotating-image-container {
        width: 250px;
        height: 250px;
    }
    
    .scrolling-text span {
        font-size: 2rem;
        letter-spacing: 2px;
        padding: 10px 20px;
    }
    
    .scrolling-text-container {
        height: 120px;
        gap: 0;
    }
    
    .scrolling-text {
        height: 60px;
    }
    
    .scrolling-text-section {
        min-height: 120px;
        margin: -60px 0;
    }

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

    .service-card {
        padding: 2rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 1.2rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .title-line-1 {
        font-size: 2rem;
    }

    .title-line-2 {
        font-size: 3rem;
    }

    .event-description {
        max-width: 100%;
    }

    .solution-content {
        grid-template-columns: 1fr;
    }

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

    .solution-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .solution-features li {
        justify-content: center;
        text-align: center;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .contact-form-container {
        padding: 2rem;
    }

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

    .software-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

    /* Project Page Mobile Styles - 768px */
    .project-header-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .project-header h1 {
        font-size: 2.8rem;
        color: var(--text-white);
    }

    .project-header h2 {
        font-size: 1.4rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .project-image {
        order: -1;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .challenge-points {
        grid-template-columns: 1fr;
    }

    .solution-features {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

    .navbar {
        left: 0;
        transform: none;
    }

    .navbar.scrolled {
        left: 5px;
        width: calc(100% - 10px);
    }

    .nav-container {
        padding: 0 15px;
        height: 60px;
    }

    .nav-logo .logo-img {
        height: 30px !important;
        max-width: 100px !important;
    }

    .nav-logo .logo-text {
        font-size: 1.1rem !important;
        color: #ffffff !important;
    }

    .nav-logo .logo-link {
        gap: 0.5rem !important;
    }

    .nav-menu {
        left: -100vw;
        top: 60px;
        width: 100vw;
        margin-left: 0;
        padding: 1.5rem 0;
        transition: left 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
        visibility: hidden;
        opacity: 0;
        display: none;
    }

    .nav-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .hamburger {
        padding: 6px;
    }

    .bar {
        width: 22px;
        height: 2px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .hero-word-1 {
        font-size: 2.5rem;
    }

    .hero-word-2 {
        font-size: 2.5rem;
    }

    .hero-word-3 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 98%;
    }

    .hero-text {
        max-width: 95%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        padding: 0 0.5rem;
    }

    .hero-title {
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-location {
        font-size: 0.9rem;
        justify-content: center;
    }

    .hero-content {
        margin-left: 0;
        padding: 0 15px;
        display: flex;
        justify-content: center;
    }

    .page-header h1 {
        font-size: 2rem;
        color: var(--text-white);
    }

    .page-header p {
        color: rgba(255, 255, 255, 0.9);
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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

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

    .contact-form-container {
        padding: 1.5rem;
    }

    /* Project Page Mobile Styles */
    .project-header-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .project-header h1 {
        font-size: 2.5rem;
        color: var(--text-white);
    }

    .project-header h2 {
        font-size: 1.3rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .project-header p {
        font-size: 1rem;
        max-width: 100%;
        color: rgba(255, 255, 255, 0.8);
    }

    .project-image {
        order: -1;
    }

    .project-img {
        height: 250px !important;
    }

    /* Dashboard Overview Mobile */
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .dashboard-module {
        padding: 1.5rem;
    }

    .module-image {
        font-size: 2.5rem;
    }

    .dashboard-module h3 {
        font-size: 1.2rem;
    }

    .dashboard-module p {
        font-size: 0.9rem;
    }

    /* Case Study Mobile */
    .case-study-header h2 {
        font-size: 2rem;
    }

    .case-study-section h3 {
        font-size: 1.5rem;
    }

    .case-study-section p {
        font-size: 1rem;
    }

    .challenge-points {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .challenge-point {
        padding: 0.8rem;
    }

    .solution-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .solution-feature {
        padding: 1rem;
    }

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

    .result-item {
        padding: 1.5rem 1rem;
    }

    .result-number {
        font-size: 2.5rem;
    }

    /* Target Audience Mobile */
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .audience-category {
        padding: 1.5rem;
    }

    .audience-category h3 {
        font-size: 1.3rem;
    }

    /* System Demo Mobile */
    .demo-placeholder {
        padding: 3rem 1.5rem;
    }

    .demo-placeholder i {
        font-size: 3rem;
    }

    .demo-placeholder p {
        font-size: 1.1rem;
    }

    /* Technologies Mobile */
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .tech-item {
        padding: 1.5rem;
    }

    .tech-item i {
        font-size: 2.5rem;
    }

    /* Key Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-item i {
        font-size: 2.5rem;
    }

    .feature-item h3 {
        font-size: 1.2rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    /* Compliance & Security Mobile */
    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .compliance-section {
        padding: 1.5rem;
    }

    .compliance-section h3 {
        font-size: 1.3rem;
    }
}

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

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}
