/* Hide scrollbar for webkit browsers (Chrome, Safari, Edge) */
body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for Firefox */
html {
    scrollbar-width: none;
}

/* Alternative method - hide scrollbar but keep functionality */
body {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;     /* Firefox */
}
body::-webkit-scrollbar {
    display: none;             /* Safari and Chrome */
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    position: relative;
}

/* Background animation */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(70, 130, 230, 0.03), transparent 70%);
    animation: pulse 15s infinite alternate;
    z-index: 0;
}

@keyframes pulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.2); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    height: 100%;
}

.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    z-index: 10;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-btn.it-flag {
    width: 48px;              /* Increase button size */
    height: 48px;
    border-radius: 50%;       /* Make it circular */
    border: none;
    background: transparent;
    font-size: 32px;          /* Increase emoji size */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-decoration: none;
    line-height: 1;
}

.lang-btn.uk-flag {
    width: 48px;              /* Increase button size */
    height: 48px;
    border-radius: 50%;       /* Make it circular */
    border: none;
    background: transparent;
    font-size: 32px;          /* Increase emoji size */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-decoration: none;
    line-height: 1;
}





.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.logo-text {
    white-space: nowrap;
}

.talk-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.talk-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding-top: 120px; /* Account for header height */
    padding-bottom: 60px;
    position: relative;
}

.tagline {
    color: #4682E6;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.main-heading {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 800px;
}

.coming-soon {
    font-size: 32px;
    font-weight: 700;
    color: #4682E6;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Scroll Indicator Styles */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 500;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover .scroll-arrow {
    border-color: #4682E6;
    background: rgba(70, 130, 230, 0.1);
}

.scroll-arrow svg {
    width: 12px;
    height: 12px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.scroll-indicator:hover .scroll-arrow svg {
    color: #4682E6;
}

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

/* Section-specific scroll indicators */
.section-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.section-scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.section-scroll-indicator .scroll-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 500;
}

.section-scroll-indicator .scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.section-scroll-indicator:hover .scroll-arrow {
    border-color: #4682E6;
    background: rgba(70, 130, 230, 0.1);
}

.section-scroll-indicator .scroll-arrow svg {
    width: 12px;
    height: 12px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.section-scroll-indicator:hover .scroll-arrow svg {
    color: #4682E6;
}

/* Scroll Up Indicator Styles */
.scroll-up-indicator {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-up-indicator:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-up-indicator .scroll-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
    font-weight: 500;
}

.scroll-up-indicator .scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: bounceUp 2s infinite;
}

.scroll-up-indicator:hover .scroll-arrow {
    border-color: #4682E6;
    background: rgba(70, 130, 230, 0.1);
}

.scroll-up-indicator .scroll-arrow svg {
    width: 12px;
    height: 12px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    transform: rotate(180deg);
}

.scroll-up-indicator:hover .scroll-arrow svg {
    color: #4682E6;
}

@keyframes bounceUp {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

/* Website Development Section Styles */
.website-section {
    background: #0f0f0f;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.website-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 150, 255, 0.02), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(70, 130, 230, 0.02), transparent 50%);
    z-index: 0;
}

.website-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.website-text {
    max-width: 500px;
}

.section-tagline {
    color: #0096FF;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-tagline::before {
    content: '';
    width: 30px;
    height: 2px;
    background: #0096FF;
}

.section-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.section-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.features-list li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: rgba(0, 150, 255, 0.1);
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #0096FF;
    flex-shrink: 0;
}

.website-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.laptop-mockup {
    width: 100%;
    max-width: 500px;
    perspective: 1000px;
}

.laptop-screen {
    width: 100%;
    height: 300px;
    background: #2d2d2d;
    border-radius: 12px 12px 0 0;
    border: 8px solid #1a1a1a;
    border-bottom: none;
    position: relative;
    transform: rotateX(5deg) rotateY(-15deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.laptop-base {
    width: 120%;
    height: 8px;
    background: linear-gradient(to bottom, #2d2d2d, #1a1a1a);
    border-radius: 0 0 25px 25px;
    margin: 0 auto;
    transform: translateX(-10%) perspective(1000px) rotateX(5deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    position: relative;
}

.laptop-base::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: linear-gradient(to bottom, #333, #1a1a1a);
    border-radius: 0 0 8px 8px;
}

.website-interface {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0096FF 0%, #6432FF 100%);
    position: relative;
    display: flex;
    flex-direction: column;
}

.browser-bar {
    height: 32px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca3f; }

.url-bar {
    flex: 1;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    margin-left: 20px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.website-content-area {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.website-logo {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.website-text-content {
    color: white;
}

.website-text-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.website-text-content p {
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.code-snippet {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 12px;
    margin-top: 16px;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    backdrop-filter: blur(5px);
}

/* Laravel Section Styles */
.laravel-section {
    background: #0f0f0f;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.laravel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 42, 32, 0.02), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(70, 130, 230, 0.02), transparent 50%);
    z-index: 0;
}

.laravel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.laravel-text {
    max-width: 500px;
}

.laravel-tagline {
    color: #FF2A20;
}

.laravel-tagline::before {
    background: #FF2A20;
}

.laravel-features-list li::before {
    background: rgba(255, 42, 32, 0.1);
    border: 1px solid rgba(255, 42, 32, 0.3);
    color: #FF2A20;
}

.laravel-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.laravel-interface {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF2A20 0%, #FF5722 100%);
    position: relative;
    display: flex;
    flex-direction: column;
}

.laravel-content-area {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.laravel-logo {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.laravel-text-content {
    color: white;
}

.laravel-text-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.laravel-text-content p {
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* AI & Automation Section Styles */
.ai-section {
    background: #0a0a0a;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.ai-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.03), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(255, 20, 147, 0.02), transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(0, 255, 127, 0.02), transparent 70%);
    z-index: 0;
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.ai-text {
    max-width: 500px;
}

.ai-tagline {
    color: #00FF7F;
}

.ai-tagline::before {
    background: #00FF7F;
}

.ai-features-list li::before {
    background: rgba(0, 255, 127, 0.1);
    border: 1px solid rgba(0, 255, 127, 0.3);
    color: #00FF7F;
}

.ai-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-container {
    width: 400px;
    perspective: 1000px;
}

.ai-screen {
    width: 100%;
    height: 480px;
    background: #1a1a1a;
    border-radius: 20px;
    border: 3px solid #2d2d2d;
    position: relative;
    transform: rotateY(-10deg) rotateX(5deg);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.ai-interface {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8A2BE2 0%, #00FF7F 100%);
    position: relative;
    display: flex;
    flex-direction: column;
}

.ai-header {
    height: 60px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-nav {
    display: flex;
    gap: 8px;
}

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

.nav-dot.active {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.ai-title {
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ai-content-area {
    flex: 1;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ai-logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-text-content {
    color: white;
    margin-bottom: 25px;
}

.ai-text-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ai-text-content p {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.ai-metrics {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
}

.ai-metric {
    text-align: center;
    color: white;
}

.metric-value {
    font-size: 18px;
    font-weight: 700;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 4px;
}

.metric-label {
    font-size: 10px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-chart {
    width: 100%;
    max-width: 200px;
    height: 60px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.chart-bars {
    display: flex;
    gap: 8px;
    align-items: end;
    height: 100%;
}

.bar {
    width: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px 10px 0 0;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: barGrow 2s ease-out infinite alternate;
}

@keyframes barGrow {
    0% { transform: scaleY(0.7); }
    100% { transform: scaleY(1); }
}

/* Social Media Section Styles */
.social-section {
    background: #151515;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 20, 147, 0.02), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.02), transparent 50%);
    z-index: 0;
}

.social-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.social-text {
    max-width: 500px;
}

.social-tagline {
    color: #FF1493;
}

.social-tagline::before {
    background: #FF1493;
}

.social-features-list li::before {
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.3);
    color: #FF1493;
}

.social-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    perspective: 1000px;
}

.phone-body {
    width: 100%;
    height: 560px;
    background: #1a1a1a;
    border-radius: 35px;
    padding: 8px;
    position: relative;
    transform: rotateY(-15deg) rotateX(5deg);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 27px;
    overflow: hidden;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.social-interface {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF1493 0%, #8A2BE2 100%);
    position: relative;
    display: flex;
    flex-direction: column;
}

.social-status-bar {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    padding-top: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.social-app-header {
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-app-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-content-area {
    flex: 1;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.social-logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-text-content {
    color: white;
    margin-bottom: 25px;
}

.social-text-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-text-content p {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.social-posts {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.social-post {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-metrics {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-metric {
    text-align: center;
    color: white;
}

.social-metric-number {
    font-size: 16px;
    font-weight: 700;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-metric-label {
    font-size: 10px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-bottom-nav {
    height: 80px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-around;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

footer {
    padding: 20px 0;
    width: 100%;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(70, 130, 230, 0.1);
    border-color: rgba(70, 130, 230, 0.3);
    color: #4682E6;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #ffffff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(70, 130, 230, 0.1);
    border-color: rgba(70, 130, 230, 0.3);
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #4682E6;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
}

.contact-value a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #4682E6;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    header {
        left: 20px;
        right: 20px;
    }
    
    .main-heading {
        font-size: 42px;
    }
    
    .description {
        font-size: 16px;
    }
    
    .hero {
        padding-top: 100px;
    }

    .laravel-content,
    .website-content,
    .social-content,
    .ai-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .section-heading {
        font-size: 36px;
    }

    .desktop-screen {
        transform: rotateX(5deg) rotateY(-15deg);
    }

    .phone-mockup {
        width: 240px;
    }

    .phone-body {
        height: 480px;
    }

    .modal {
        padding: 30px 20px;
    }

    .ai-container {
        width: 320px;
    }
    
    .ai-screen {
        height: 400px;
        transform: rotateY(-5deg) rotateX(2deg);
    }
    
    .ai-metrics {
        gap: 15px;
    }
    
    .metric-value {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 36px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .talk-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .laravel-section,
    .website-section,
    .social-section,
    .ai-section {
        padding: 80px 0;
    }

    .section-heading {
        font-size: 32px;
    }

    .phone-mockup {
        width: 200px;
    }

    .phone-body {
        height: 400px;
    }

    .modal {
        padding: 20px;
    }

    .modal-title {
        font-size: 20px;
    }

    .ai-container {
        width: 280px;
    }
    
    .ai-screen {
        height: 360px;
    }
    
    .ai-content-area {
        padding: 20px 15px;
    }
    
    .ai-logo {
        width: 60px;
        height: 60px;
    }
    
    .ai-text-content h3 {
        font-size: 18px;
    }
    
    .ai-metrics {
        gap: 12px;
    }
    
    .metric-value {
        font-size: 14px;
    }
}