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

:root {
    --primary-color: #ffffff;
    --secondary-color: #cccccc;
    --dark-bg: #000000;
    --light-bg: #0a0a0a;
    --text-dark: #ffffff;
     --text-black: #000000;
    --text-light: #999999;
    --white: #ffffff;
    --accent: #1a1a1a;
    --gradient: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

body {
    font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', helvetica, sans-serif;
    font-weight: 300;
    line-height: 1.5;
    color: var(--text-dark);
    overflow-x: hidden;
    font-size: 18px;
    background: var(--dark-bg);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 0px solid #1a1a1a;
    z-index: 1000;
    padding: 1.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-svg {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    white-space: nowrap;
}

.highlight {
    color: var(--text-light);
    font-size: 2rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 400;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-menu a.active {
    color: var(--white);
    font-weight: 500;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        width: 0;
        left: 50%;
        right: 50%;
    }
    to {
        width: 100%;
        left: 0;
        right: 0;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark-bg);
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    pointer-events: none;
    z-index: 1;
}

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

#particlesCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

/* Typewriter Animation */
#typewriter-text::after {
    content: '|';
    color: var(--white);
    animation: blink 1s infinite;
    font-weight: 400;
}

#typewriter-text.typing::after {
    animation: none;
    opacity: 1;
}

#typewriter-text.finished::after {
    display: none;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.gradient-text {
    color: var(--white);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gradient-text.show {
    opacity: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--white);
    color: var(--dark-bg);
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.btn-primary:hover .btn-arrow {
    transform: translate(3px, -3px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-secondary:hover .btn-arrow {
    transform: translate(3px, -3px);
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: none;
}

/* Services Section - Full Viewport Height */
.services {
    padding: 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    height: 100vh;
    scroll-behavior: smooth;
}

.services:focus {
    outline: none;
}

/* Add smooth scrolling to the page */
html {
    scroll-behavior: smooth;
}

.services-header {
    position: absolute;
    top: 4rem;
    left: 4rem;
    z-index: 10;
    color: var(--white);
    max-width: 400px;
}

.services-header .section-title {
    font-size: 4rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.services-header .section-subtitle {
    text-align: left;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.services-gallery {
    display: flex;
    width: 600%; /* 6 services × 100% each */
    height: 100vh;
    position: relative;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-item {
    width: calc(100% / 6); /* Each item takes 1/6 of the total width */
    height: 100vh;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
}

.service-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--dark-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.8s ease;
}

.service-item.active .service-image-container {
    transform: scale(1.05);
}

.service-image {
    display: none; /* Hide the img tag, we'll use background images */
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    transition: all 0.8s ease;
}

.service-content {
    max-width: 600px;
    text-align: center;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.service-item.active .service-content {
    transform: translateY(0);
    opacity: 1;
}

.service-overlay h3 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: center;
}

.service-overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: right;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1.2rem 3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin: 0 auto;
}

.service-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.service-cta::after {
    content: '→';
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.service-cta:hover::after {
    transform: translateX(5px);
}

/* Service Navigation Dots */
.service-navigation {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

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

.nav-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.services:hover .scroll-hint {
    opacity: 1;
}

/* Service Labels */
.nav-dot::after {
    content: attr(data-service);
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-dot:hover::after {
    opacity: 1;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--light-bg);
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.88);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.about-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-icon {
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
}

.stats-card {
    background: var(--accent);
    padding: 3rem;
    border-radius: 0;
    border: 1px solid #1a1a1a;
}

.stat {
    text-align: center;
    margin-bottom: 2rem;
}

.stat:last-child {
    margin-bottom: 0;
}

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

.stat p {
    color: var(--text-light);
}

/* Team Section */
.team {
    padding: 8rem 0;
    background: var(--white);
    color: var(--text-dark);
}

.team-container {
    width: 90%;
    margin: 0 auto;
    /* max-width: 1200px; */
}

.team-intro {
    text-align: left;
    margin-bottom: 6rem;
    max-width: 800px;
}

.team-intro h2 {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-black);
    margin: 0;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: 0;
    width: 75%;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 100%;
    height: 600px;
    margin-bottom: 2rem;
    overflow: hidden;
}

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

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

.member-info {
    text-align: left;
}

.member-role {
    font-size: 1rem;
    color: var(--text-black);
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 300;
}

.member-name {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-black);
    margin: 0;
    line-height: 1.2;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--white);
    background-image: url('img/view-city-square.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-dark);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    pointer-events: none;
}

.contact-container {
    width: 90%;
    margin: 0 auto;
    max-width: 1400px;
    position: relative;
    z-index: 2;
}

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

.contact-form-section {
    padding-right: 2rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.contact-form {
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-black);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-size: 1rem;
    transition: border-color 0.3s;
    color: var(--text-black);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-bottom-color: var(--text-dark);
}

.phone-input {
    display: flex;
    gap: 0.5rem;
}

.country-code {
    width: 120px;
    flex-shrink: 0;
}

.phone-input input {
    flex: 1;
}

.phone-input-integrated {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    transition: border-color 0.3s;
}

.phone-input-integrated:focus-within {
    border-bottom-color: var(--text-dark);
}

.country-selector {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem 0.75rem 1rem 0;
    cursor: pointer;
    min-width: 60px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 0.5rem;
    border-radius: 2px;
}

.dropdown-arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    color: #666;
}

.dropdown-arrow svg {
    transition: transform 0.3s ease;
}

.country-selector:hover .dropdown-arrow {
    color: var(--text-dark);
}

.country-dropdown {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    opacity: 0;
    cursor: pointer;
    border: none;
    background: transparent;
}

.phone-number-input {
    flex: 1;
    border: none !important;
    border-bottom: none !important;
    background: transparent;
    padding: 1rem 0;
    font-size: 1rem;
    color: var(--text-dark);
    font-family: inherit;
}

.phone-number-input:focus {
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

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

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.privacy-link {
    color: var(--text-black);
    text-decoration: underline;
}

.submit-btn {
    background: var(--text-black);
    color: var(--white);
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.submit-btn:hover {
    background: #333;
}

.contact-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #f1f1f1; */
    padding: 5rem;
}

.contact-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.form-message {
    margin-top: 1rem;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #f5c6cb;
}

.error-message ul {
    margin: 0;
    padding-left: 1.5rem;
}

.btn-loading {
    opacity: 0.7;
}

.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.select-wrapper select {
    width: 100%;
    padding: 1rem 2.5rem 1rem 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-size: 1rem;
    transition: border-color 0.3s;
    color: var(--text-black);
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.select-wrapper select:focus {
    outline: none;
    border-bottom-color: var(--text-dark);
}

.select-arrow {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
}

.select-arrow svg {
    transition: transform 0.3s ease;
}

.select-wrapper:hover .select-arrow {
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    background-image: url('https://images.unsplash.com/photo-1526374965328-7f61d4dc18c5?w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    pointer-events: none;
}

.footer-container {
    width: 90%;
    max-width: none;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-transform: lowercase;
}

.footer-column p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-column a {
    color: #94a3b8;
    transition: color 0.3s ease;
    text-decoration: none;
}
.footer-column a:hover {
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-column p:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.scroll-to-top {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.up-arrow {
    font-size: 1.8rem;
    color: #000000;
    font-weight: 400;
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-gallery {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 1px solid #1a1a1a;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 1rem 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .nav-menu a.active::after {
        bottom: 0.5rem;
        height: 2px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-section {
        padding-right: 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .phone-input {
        flex-direction: column;
        gap: 1rem;
    }
    
    .country-code {
        width: 100%;
    }
    
    .services-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .service-image-container {
        height: 300px;
    }
    
    .team-intro h2 {
        font-size: 2rem;
    }
    
    .team-members {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-left: 0;
        margin: 0 auto;
    }
    
    .member-image {
        height: 500px;
    }
}
/* Services Page Styles - Silky & Visual Design */
.services-hero {
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.services-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, var(--white) 100%);
    pointer-events: none;
}

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

.services-hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.services-hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

.services-grid-section {
    padding: 0 0 8rem;
    background: var(--white);
    position: relative;
}

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

.service-card {
    background: var(--white);
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
    border: none;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.service-card-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.service-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 2;
}

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

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

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

.service-card-content {
    padding: 3rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(180deg, var(--white) 0%, #fafbfc 100%);
}

.service-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e1e8ed 50%, transparent 100%);
}

.service-card-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.service-card-content p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-weight: 300;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex: 1;
}

.service-features li {
    color: #495057;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2rem;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.service-card:hover .service-features li::before {
    transform: scale(1.3);
}

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

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f3f4;
}

.learn-more {
    color: #667eea;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.learn-more::after {
    content: '→';
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.service-card:hover .learn-more::after {
    transform: translateX(5px);
}

.service-card:hover .learn-more {
    color: #764ba2;
    transform: translateX(5px);
}

.services-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, #667eea 0%, #008080 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

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

.services-cta-content h2 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.services-cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.services-cta .btn-primary {
    background: var(--white);
    color: #667eea;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

.nav-menu a.active {
    color: var(--white);
    font-weight: 500;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-hero-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .service-card {
        margin: 0;
        min-height: auto;
    }
    
    .service-card-content {
        padding: 2rem 1.5rem;
    }
    
    .services-cta-content h2 {
        font-size: 2.2rem;
    }
    
    .services-cta-content p {
        font-size: 1.1rem;
    }
}
/* Individual Service Page Styles - Clean Modern Design */
.service-hero {
    padding: 8rem 0 4rem;
    background: #f5f3f0;
    background-image: url('img/digital-agency-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-dark);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 243, 240, 0.85);
    pointer-events: none;
    z-index: 1;
}

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

.breadcrumb {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

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

.breadcrumb a:hover {
    color: var(--text-black);
}

.service-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-black);
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.service-hero-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.service-hero-image {
    text-align: right;
    position: relative;
    z-index: 2;
}

.service-hero-image p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}



.service-overview {
    padding: 0 0 8rem;
    background: var(--white);
    position: relative;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-main {
    color: var(--text-black);
}

.service-image {
    margin-bottom: 4rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-description h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--text-black);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.service-description p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 2rem;
    font-weight: 300;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.highlight-item {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #f1f3ff 100%);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight-item:hover::before {
    opacity: 1;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.1);
}

.highlight-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-black);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.highlight-item p {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.service-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-info-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--text-black);
    letter-spacing: -0.01em;
}

.included-features {
    list-style: none;
}

.included-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 2rem;
    color: #495057;
    font-weight: 400;
    transition: all 0.3s ease;
}

.included-features li:last-child {
    border-bottom: none;
}

.included-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.3rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.included-features li:hover::before {
    transform: scale(1.3);
}

.included-features li:hover {
    color: var(--text-black);
    padding-left: 2.5rem;
}

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

.tech-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.tech-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.service-cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.service-cta-card h3 {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.service-cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.service-cta-card .btn-primary {
    background: var(--white);
    color: #667eea;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-cta-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

.service-process {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f1f3ff 100%);
    position: relative;
}

.service-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.service-process h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 5rem;
    color: var(--text-black);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.process-step h4 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-black);
    position: relative;
    z-index: 2;
}

.process-step p {
    color: #6c757d;
    line-height: 1.7;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.8rem;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-process h2 {
        font-size: 2.2rem;
    }
    
    .service-description h2 {
        font-size: 2.2rem;
    }
    
    .service-image {
        margin-bottom: 3rem;
    }
    
    .service-image img {
        height: 250px;
    }
}
/* Service Features Section */
.service-features-section {
    padding: 6rem 0;
    background: var(--white);
}

.service-features-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.service-features-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 4rem;
    line-height: 1.3;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-feature-item {
    text-align: center;
    padding: 2rem 1rem;
}

.service-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-black);
}

.service-feature-icon svg {
    width: 48px;
    height: 48px;
    stroke: #333;
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.service-feature-item:hover .service-feature-icon svg {
    stroke: #667eea;
    transform: translateY(-2px);
}

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

.service-feature-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Split Content Section */
.service-split-section {
    background: var(--white);
    position: relative;
}

.service-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.service-split-image {
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-split-content {
    background: #2a2a2a;
    color: var(--white);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-split-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
}

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

.service-experience-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #444;
    font-size: 1rem;
}

.service-experience-item:last-child {
    border-bottom: none;
}

.service-experience-years {
    background: #666;
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Service CTA Section */
.service-cta-section {
    padding: 4rem 0;
    background: var(--text-black);
    text-align: center;
}

.service-cta-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.service-cta-section p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-cta-section .btn-primary {
    background: var(--white);
    color: var(--text-black);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-cta-section .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Updated Process Section */
.service-process {
    padding: 6rem 0;
    background: #f8f9fa;
}

.service-process .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 4rem;
    color: var(--text-black);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.process-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-black);
}

.process-step p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .service-hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .service-split-container {
        grid-template-columns: 1fr;
    }
    
    .service-split-content {
        padding: 3rem 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-features-title {
        font-size: 2rem;
    }
}
/* Responsive Design for Fullscreen Services */
@media (max-width: 1024px) {
    .services {
        height: 100vh;
    }
    
    .services-gallery {
        height: 100vh;
    }
    
    .service-item {
        height: 100vh;
    }
    
    .services-header {
        left: 2rem;
        max-width: 350px;
    }
    
    .services-header .section-title {
        font-size: 3rem;
    }
    
    .service-navigation {
        right: 2rem;
    }
    
    .service-overlay {
        padding: 3rem 2rem;
    }
    
    .service-content {
        max-width: 400px;
    }
    
    .service-overlay h3 {
        font-size: 2.8rem;
    }
}

/* Desktop and Mobile Services Visibility */
.desktop-services {
    display: block;
}

.mobile-services {
    display: none;
}

@media (max-width: 768px) {
    .desktop-services {
        display: none !important;
    }
    
    .mobile-services {
        display: block !important;
    }
    
    .services {
        height: 100%;
        min-height: 100%;
        padding: 0;
        /* background: #1a1a1a; */
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    
    .mobile-services-header {
        padding: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
    }
    
    .mobile-services-header .section-title {
        font-size: 2rem;
        text-align: left;
        margin-bottom: 0.5rem;
        color: white;
        font-weight: 400;
    }
    
    .mobile-services-header .section-subtitle {
        text-align: left;
        font-size: 0.9rem;
        max-width: 100%;
        margin: 0;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.4;
    }
    
    .mobile-services-list {
        flex: 1;
        overflow-y: auto;
        padding: 0;
    }
    
    .mobile-service-item {
        display: flex;
        align-items: flex-start;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .mobile-service-item:hover {
        background: rgba(255, 255, 255, 0.02);
    }
    
    .mobile-service-item:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-service-icon {
        width: 40px;
        height: 40px;
        margin-right: 1rem;
        margin-top: 0.2rem;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .mobile-service-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .mobile-service-content {
        flex: 1;
    }
    
    .mobile-service-content h3 {
        font-size: 1.2rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
        color: white;
        line-height: 1.3;
    }
    
    .mobile-service-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .mobile-service-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }
    
    .mobile-service-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-service-cta:hover::before {
        opacity: 1;
    }
    
    .mobile-service-cta:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-1px);
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .mobile-service-cta-icon {
        width: 20px;
        height: 20px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .mobile-service-cta-icon svg {
        width: 12px;
        height: 12px;
        stroke: white;
    }
    
    .mobile-service-cta:active {
        transform: translateY(0);
    }
    
    /* Creative Button Variations */
    .mobile-service-cta.cta-web {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
    
    .mobile-service-cta.cta-web:hover {
        background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    }
    
    .mobile-service-cta.cta-app {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
    }
    
    .mobile-service-cta.cta-app:hover {
        background: linear-gradient(135deg, #ee82f0 0%, #f34560 100%);
        box-shadow: 0 8px 25px rgba(240, 147, 251, 0.5);
    }
    
    .mobile-service-cta.cta-software {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
    }
    
    .mobile-service-cta.cta-software:hover {
        background: linear-gradient(135deg, #3d9bfd 0%, #00e0fd 100%);
        box-shadow: 0 8px 25px rgba(79, 172, 254, 0.5);
    }
    
    .mobile-service-cta.cta-mobile {
        background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        box-shadow: 0 4px 15px rgba(67, 233, 123, 0.3);
    }
    
    .mobile-service-cta.cta-mobile:hover {
        background: linear-gradient(135deg, #32d66a 0%, #27e8c6 100%);
        box-shadow: 0 8px 25px rgba(67, 233, 123, 0.5);
    }
    
    .mobile-service-cta.cta-marketing {
        background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        box-shadow: 0 4px 15px rgba(250, 112, 154, 0.3);
    }
    
    .mobile-service-cta.cta-marketing:hover {
        background: linear-gradient(135deg, #f95f89 0%, #fdd82f 100%);
        box-shadow: 0 8px 25px rgba(250, 112, 154, 0.5);
    }
    
    .mobile-service-cta.cta-brand {
        background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
        box-shadow: 0 4px 15px rgba(168, 237, 234, 0.3);
        color: #333;
    }
    
    .mobile-service-cta.cta-brand:hover {
        background: linear-gradient(135deg, #97dbd9 0%, #fdc5d2 100%);
        box-shadow: 0 8px 25px rgba(168, 237, 234, 0.5);
    }
    
    .mobile-service-cta.cta-brand::after {
        filter: brightness(0) invert(0.2);
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .services-header .section-title {
        font-size: 2rem;
    }
    
    .services-header .section-subtitle {
        font-size: 0.9rem;
    }
    
    .service-item {
        height: 260px;
    }
    
    .service-overlay {
        padding: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .service-content {
        text-align: right;
        max-width: 90%;
    }
    
    .service-cta {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .scroll-hint {
        bottom: 1rem;
        font-size: 0.7rem;
    }
}

/* Intelligence Portal Section */
.intelligence-portal {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.intelligence-portal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.portal-container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

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

.portal-header h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--white);
}

.portal-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

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

/* Pricing card styles are defined in the Portal Pricing Section */

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    /* color: var(--text-black); */
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: #667eea;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
}

.period {
    font-size: 1rem;
    color: #666;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #555;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.pricing-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-btn svg {
    transition: transform 0.3s ease;
}

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

.pricing-btn:hover svg {
    transform: translateX(4px);
}

.pricing-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.pricing-btn.primary {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.pricing-btn.primary:hover {
    background: #45a049;
    border-color: #45a049;
}

/* AI Add-on */
.ai-addon {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
}

.addon-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.addon-content p {
    text-align: center;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.addon-pricing {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.addon-option {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.addon-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.addon-option.popular-addon {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid rgba(76, 175, 80, 0.5);
}

.addon-price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.addon-unit {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.addon-separator {
    font-size: 1.2rem;
    opacity: 0.7;
    font-weight: 300;
}

.portal-cta {
    text-align: center;
    margin-top: 2rem;
}

.portal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.portal-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.link-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.portal-link:hover .link-arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .portal-header h2 {
        font-size: 2.2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .addon-pricing {
        flex-direction: column;
        gap: 1rem;
    }
    
    .addon-separator {
        display: none;
    }
}
/* Intelligence Portal Page Styles */
.portal-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('img/people-taking-part-high-protocol-event.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.portal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.portal-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.portal-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    font-weight: 300;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.5rem;
}

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

/* Features Overview */
.features-overview {
    padding: 8rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('img/people-taking-part-high-protocol-event.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

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

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(26, 26, 26, 0.95);
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

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

/* Portal Pricing */
/* Portal Pricing Section */
.portal-pricing {
    padding: 8rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(10, 10, 10, 0.9)), url('img/people-taking-part-high-protocol-event.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 4rem;
}

.pricing-card {
    background: rgba(26, 26, 26, 0.9);
    color: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(26, 26, 26, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.popular {
    border: 2px solid #4CAF50;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card.premium {
    border: 2px solid #FFD700;
    /* transform: scale(1.05); */
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-5px);
}

.premium-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    margin: 1.5rem 0;
}

.price .currency {
    font-size: 1.5rem;
    color: var(--white);
    vertical-align: top;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
}

.price .period {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

.plan-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--white);
    font-size: 0.95rem;
}

.features-list svg {
    color: #4CAF50;
    flex-shrink: 0;
}

.plan-value {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    color: var(--white);
    font-size: 0.9rem;
}

.popular-value {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

@media (max-width: 768px) {
    .portal-pricing {
        padding: 4rem 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
}

/* Demo Section */
.demo-section {
    padding: 8rem 0;
    background: linear-gradient(rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9)), url('img/people-taking-part-high-protocol-event.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    position: relative;
}

.demo-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.demo-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    font-weight: 300;
}

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

/* Responsive Design for Portal Page */
@media (max-width: 768px) {
    .portal-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .demo-content h2 {
        font-size: 2.2rem;
    }
}
/* Detailed Features Section */
.detailed-features {
    padding: 8rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95)), url('img/people-taking-part-high-protocol-event.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.feature-sections {
    margin-top: 4rem;
}

.feature-section {
    margin-bottom: 6rem;
    padding: 4rem 0;
}

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

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

.feature-section.reverse .feature-content {
    direction: rtl;
}

.feature-section.reverse .feature-text,
.feature-section.reverse .feature-visual {
    direction: ltr;
}

.feature-text h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    /* color: var(--text-black); */
}

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

.feature-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    color: var(--text-black);
    padding-left: 1rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

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

.feature-mockup {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2rem;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    max-width: 350px;
    width: 100%;
}

.mockup-header {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Integration & Security Section */
.integration-security {
    padding: 6rem 0;
    background: linear-gradient(rgba(10, 10, 10, 0.95), rgba(0, 0, 0, 0.95)), url('img/people-taking-part-high-protocol-event.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.integration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.integration-card {
    background: rgba(26, 26, 26, 0.9);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(26, 26, 26, 0.95);
}

.integration-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--white);
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.integration-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.security-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

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

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .feature-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-section.reverse .feature-content {
        direction: ltr;
    }
    
    .integration-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .detailed-features {
        padding: 4rem 0;
    }
    
    .feature-section {
        margin-bottom: 4rem;
        padding: 2rem 0;
    }
    
    .feature-text h3 {
        font-size: 1.8rem;
    }
    
    .feature-list li {
        font-size: 1rem;
    }
    
    .feature-mockup {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .integration-logos {
        grid-template-columns: 1fr;
    }
    
    .integration-security {
        padding: 4rem 0;
    }
}
/* New Feature Badges and Styling */
.new-badge {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    margin-right: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.new-feature {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(69, 160, 73, 0.1) 100%) !important;
    border: 1px solid rgba(76, 175, 80, 0.2) !important;
    position: relative;
}

.new-feature::before {
    /* content: '✨'; */
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

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

/* Enhanced Feature List Styling */
.feature-list li {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.feature-list li:hover {
    color: var(--text-black);
    padding-left: 1rem;
    background: rgba(102, 126, 234, 0.02);
}

/* PWA Technology Specific Styling */
.feature-section:first-child .feature-mockup {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.feature-section:first-child .feature-mockup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.header-title {
    color: #000000;
}

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

/* User Groups Color Coding */
.feature-section:nth-child(2) .mockup-item {
    position: relative;
}

.feature-section:nth-child(2) .mockup-item:nth-child(1) {
    border-left: 4px solid #FF6B6B;
}

.feature-section:nth-child(2) .mockup-item:nth-child(2) {
    border-left: 4px solid #4ECDC4;
}

.feature-section:nth-child(2) .mockup-item:nth-child(3) {
    border-left: 4px solid #45B7D1;
}

.feature-section:nth-child(2) .mockup-item:nth-child(4) {
    border-left: 4px solid #96CEB4;
}

/* Recording Studio Animation */
.feature-section:nth-child(3) .mockup-item:nth-child(1) {
    animation: pulse 2s ease-in-out infinite;
}

.feature-section:nth-child(3) .mockup-item:nth-child(2) {
    animation: typing 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        background: rgba(255, 255, 255, 0.1);
    }
    50% { 
        background: rgba(255, 82, 82, 0.2);
    }
}

@keyframes typing {
    0%, 100% { 
        opacity: 1;
    }
    50% { 
        opacity: 0.7;
    }
}

/* Enhanced Responsive Design for New Features */
@media (max-width: 768px) {
    .new-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
        margin-right: 0.3rem;
    }
    
    .feature-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .new-feature::before {
        top: 0.3rem;
        right: 0.3rem;
        font-size: 0.8rem;
    }
}
/* Intelligence Portal Section Titles */
.section-title.header-title {
    color: var(--white);
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Feature Icon Large */
.feature-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
}

.feature-icon-large svg {
    color: var(--white);
}
/* Accordion Styles */
.accordion-container {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 4rem;
}

.accordion-item {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
}

.accordion-title h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.accordion-title svg {
    color: var(--white);
    opacity: 0.8;
}

.accordion-chevron {
    transition: transform 0.3s ease;
    color: var(--white);
    opacity: 0.7;
}

.accordion-item.active .accordion-chevron {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-inner {
    padding: 2rem 2rem 2rem 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .accordion-header {
        padding: 1rem 1.5rem;
    }
    
    .accordion-title h3 {
        font-size: 1.1rem;
    }
    
    .accordion-inner {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/* AI Transcription Add-On Section */
.ai-addon-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(10, 10, 10, 0.95), rgba(0, 0, 0, 0.95)), url('img/people-taking-part-high-protocol-event.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

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

.addon-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1rem;
    opacity: 0.8;
}

.addon-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.addon-card {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(26, 26, 26, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
}

.addon-card.popular {
    border: 2px solid #4CAF50;
    transform: scale(1.05);
}

.addon-card.popular .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.addon-plan-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.addon-price {
    margin: 1.5rem 0;
}

.addon-price .currency {
    font-size: 1.5rem;
    color: var(--white);
    vertical-align: top;
}

.addon-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
}

.addon-price .period {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

.addon-commitment {
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 2rem;
}

.addon-features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.addon-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--white);
    font-size: 0.95rem;
}

.addon-features-list svg {
    color: #4CAF50;
    flex-shrink: 0;
}

.addon-example,
.addon-value,
.addon-savings {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    color: var(--white);
    font-size: 0.9rem;
}

.addon-value {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.addon-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.addon-btn svg {
    transition: transform 0.3s ease;
}

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

.addon-btn:hover svg {
    transform: translateX(4px);
}

.addon-btn.primary {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.addon-btn.primary:hover {
    background: #45a049;
    border-color: #45a049;
}

@media (max-width: 768px) {
    .ai-addon-section {
        padding: 4rem 0;
    }
    
    .addon-pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .addon-card.popular {
        transform: none;
    }
    
    .addon-price .amount {
        font-size: 2.5rem;
    }
}
/* Intelligence Portal Section on Main Page */
.intelligence-portal {
    padding: 8rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('img/people-taking-part-high-protocol-event.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.portal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.portal-text h2 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
}

.portal-subtitle {
    font-size: 1.3rem;
    color: #4CAF50;
    margin-bottom: 2rem;
    font-weight: 400;
}

.portal-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.portal-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.portal-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-size: 1.1rem;
}

.portal-feature svg {
    color: #4CAF50;
    flex-shrink: 0;
}

.portal-pricing h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pricing-card-mini {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card-mini:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card-mini:first-child {
    border-color: #4CAF50;
}

.pricing-card-mini h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.price-mini {
    margin-bottom: 1.5rem;
}

.price-mini .currency {
    font-size: 1rem;
    color: var(--white);
    vertical-align: top;
}

.price-mini .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.price-mini .period {
    font-size: 0.9rem;
    color: var(--text-light);
}

.features-mini {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.features-mini li {
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-mini li:last-child {
    border-bottom: none;
}

.popular-badge-mini {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.portal-cta .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portal-cta .btn-primary {
    background: #4CAF50;
    color: white;
}

.portal-cta .btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.portal-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.portal-cta .btn svg {
    transition: transform 0.3s ease;
}

.portal-cta .btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .intelligence-portal {
        padding: 4rem 0;
    }
    
    .portal-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .portal-text h2 {
        font-size: 2.5rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .portal-cta {
        flex-direction: column;
    }
    
    .portal-features {
        margin-bottom: 2rem;
    }
}

/* Plan Selection Modal */
.plan-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.plan-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin: 5% auto;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.plan-modal-close {
    color: #aaa;
    float: right;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.plan-modal-close:hover,
.plan-modal-close:focus {
    color: #fff;
}

#modalPlanTitle {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.plan-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.plan-form label {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.plan-form input[type="text"],
.plan-form input[type="email"],
.plan-form input[type="tel"],
.plan-form textarea {
    width: 100%;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.plan-form input:focus,
.plan-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.plan-form textarea {
    resize: vertical;
    min-height: 80px;
}

.plan-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.plan-form .checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
}

.plan-form .checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.plan-form .submit-btn {
    width: 100%;
    padding: 1rem;
    /* background: linear-gradient(135deg, var(--primary-color), #0066cc); */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-form .submit-btn:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3); */
}

.plan-form .form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.plan-form .form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4CAF50;
    color: #4CAF50;
}

.plan-form .form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #f44336;
}

@media (max-width: 768px) {
    .plan-modal-content {
        width: 95%;
        padding: 2rem 1.5rem;
        margin: 10% auto;
    }
    
    .plan-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
/* Admin Login Link */
.admin-link {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.admin-link:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.footer-logo {
    position: relative;
}