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

/* Additional reset for common elements */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background-color: #192230;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

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

@keyframes scaleIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(255, 196, 0, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 196, 0, 0.8); }
    100% { box-shadow: 0 0 5px rgba(255, 196, 0, 0.5); }
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    background-color: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background-color: #ffc400;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background-color: #2c2f38;
    border-radius: 10px;
}

/* Section elements */
section {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #fff;
    overflow: hidden;
    width: 100%;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%23ffffff10" stroke-width="0.5"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(25, 34, 48, 0.85), rgba(25, 34, 48, 0.75)), 
                radial-gradient(circle at center, rgba(255, 196, 0, 0.2), rgba(44, 47, 56, 0.4));
    z-index: 1;
}

.site-header {
    position: relative;
    z-index: 2;
    padding: 25px 0;
    animation: fadeIn 1s ease forwards;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo a {
    font-size: 34px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}
.logo-image {
    
    height: 110px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 196, 0, 0.3));
    transition: all 0.3s ease;
}


.logo a:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(255, 196, 0, 0.5));
}

.logo-highlight {
    color: #ffc400;
    position: relative;
}

.logo-highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffc400;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.logo a:hover .logo-highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background-color: #ffc400;
    color: #192230;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 196, 0, 0.3);
}

.btn-primary:hover {
    background-color: #e6b000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 196, 0, 0.4);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-secondary {
    background-color: #ffc400;
    color: #192230;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 196, 0, 0.3);
}

.btn-secondary:hover {
    background-color: #e6b000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 196, 0, 0.4);
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.close-btn:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    padding-bottom: 60px;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 60px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    animation: scaleIn 1.2s ease forwards;
    background: linear-gradient(to right, #ffffff, #ffc400, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: textGradient 4s linear infinite;
}

@keyframes textGradient {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-weight: 500;
    animation: fadeIn 0.8s ease forwards;
}

.color-palette {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    width: 100%;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.4s;
}

.color-swatch {
    width: 120px;
    height: 200px;
    border-radius: 100px 100px 15px 15px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.color-swatch:nth-child(1) {
    border-bottom: 3px solid #ffc400;
}

.color-swatch:nth-child(2) {
    border-bottom: 3px solid #ffc400;
}

.color-swatch:nth-child(3) {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.color-swatch:nth-child(4) {
    border-bottom: 3px solid #ffc400;
}

.color-swatch:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.color-swatch:nth-child(3):hover {
    transform: scale(1.15);
}

.swatch-code {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.9);
    color: #192230;
    padding: 5px 10px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.color-swatch:nth-child(3) .swatch-code {
    background-color: #192230;
    color: #ffc400;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    width: 100%;
}

.feature-item {
    flex: 1;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: rgba(61, 71, 78, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    animation: fadeIn 1s ease forwards;
    animation-delay: calc(0.2s * var(--i, 1));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-item:nth-child(1) { --i: 1; }
.feature-item:nth-child(2) { --i: 2; }
.feature-item:nth-child(3) { --i: 3; }

.feature-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 196, 0, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 196, 0, 0.2);
}

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

.feature-icon {
    font-size: 24px;
    color: #ffc400;
    margin-bottom: 20px;
    animation: floatAnimation 3s ease-in-out infinite;
}

.feature-icon i {
    padding: 15px;
    border: 2px solid #ffc400;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(255, 196, 0, 0.4);
    animation: glow 2s infinite;
}

.feature-item:hover .feature-icon i {
    background-color: #ffc400;
    color: #192230;
    transform: scale(1.1);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 25%;
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, transparent, #ffc400, transparent);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-title::after {
    width: 80%;
    left: 10%;
}

.feature-desc {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-desc {
    color: #fff;
}

.cta-container {
    margin-top: 20px;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.8s;
}

/* Showcase Section Styles */
.showcase-section {
    padding: 100px 0;
    background-color: #192230;
    position: relative;
    overflow: hidden;
}

.showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, #2c2f38, transparent 40%);
    z-index: 0;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.tagline {
    font-size: 16px;
    color: #ffc400;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeIn 0.8s ease forwards;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    position: relative;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: scaleIn 1s ease forwards;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ffc400, #ffdd77);
    border-radius: 2px;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    gap: 30px;
    border-bottom: 1px solid #3d474e;
    padding-bottom: 15px;
    position: relative;
    z-index: 1;
}

.filter-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 15px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.filter-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.filter-btn.active {
    color: #fff;
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #ffc400, #ffdd77);
    border-radius: 3px 3px 0 0;
    animation: scaleIn 0.3s ease forwards;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

/* Portfolio Items */
.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    background-color: #3d474e;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(30px);
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
    animation-delay: calc(0.1s * var(--i, 1));
}

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

.portfolio-item:nth-child(1) { --i: 1; }
.portfolio-item:nth-child(2) { --i: 2; }
.portfolio-item:nth-child(3) { --i: 3; }
.portfolio-item:nth-child(4) { --i: 4; }
.portfolio-item:nth-child(5) { --i: 5; }
.portfolio-item:nth-child(6) { --i: 6; }
.portfolio-item:nth-child(7) { --i: 7; }
.portfolio-item:nth-child(8) { --i: 8; }

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.portfolio-img {
    width: 100%;
    height: 0;
    padding-bottom: 65%; /* Aspect ratio for images */
    position: relative;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 196, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

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

.view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: #192230;
    border-radius: 50%;
    font-size: 20px;
    transform: scale(0);
    transition: all 0.3s ease;
}

.portfolio-item:hover .view-btn {
    transform: scale(1);
}

.view-btn:hover {
    background: #fff;
    color: #ffc400;
    transform: scale(1.1);
}

.portfolio-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: all 0.75s ease;
    z-index: 2;
}

.portfolio-item:hover .portfolio-img::after {
    left: 150%;
}

.portfolio-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-info {
    padding: 20px;
    background: #3d474e;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-info {
    background: #2c2f38;
}

.portfolio-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.category {
    font-size: 14px;
    color: #ccc;
    display: block;
    transition: all 0.3s ease;
}

.portfolio-item:hover .category {
    color: #ffc400;
}

.portfolio-info h3::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffc400;
    transition: width 0.3s ease;
}

.portfolio-item:hover .portfolio-info h3::before {
    width: 100%;
}

/* Animation Classes */
.animate-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Mouse Cursor */
html {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 196, 0, 0.5);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-title {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .filter-tabs {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .features-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .color-palette {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .color-swatch {
        width: 100px;
        height: 160px;
    }
    
    .color-swatch:nth-child(3) {
        order: -1;
        margin-bottom: 20px;
        width: 120px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .color-palette {
        gap: 15px;
    }
    
    .color-swatch {
        width: 70px;
        height: 140px;
    }
    
    .color-swatch:nth-child(3) {
        width: 90px;
        height: 160px;
    }
    
    .swatch-code {
        font-size: 12px;
        padding: 4px 8px;
    }
}

/* Services Section */
.services-section {
    background-color: #121212;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, #192230, transparent 40%);
    z-index: 0;
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.services-title {
    font-size: 60px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeIn 1s ease forwards;
    position: relative;
    display: inline-block;
}

.emoji {
    font-size: 50px;
    vertical-align: middle;
    margin-left: 15px;
    display: inline-block;
    animation: scaleIn 1s ease forwards, floatAnimation 3s ease-in-out infinite;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.service-item {
    flex: 1;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border-radius: 8px;
    background-color: rgba(25, 34, 48, 0.4);
    transition: all 0.4s ease;
    animation: fadeIn 1s ease forwards;
    animation-delay: calc(0.2s * var(--i, 1));
}

.service-item:nth-child(1) { --i: 1; }
.service-item:nth-child(2) { --i: 2; }
.service-item:nth-child(3) { --i: 3; }

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, #ff3333, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-item:nth-child(1)::before {
    background: linear-gradient(to right, transparent, #ffc400, transparent);
}

.service-item:nth-child(2)::before {
    background: linear-gradient(to right, transparent, #ff3333, transparent);
}

.service-item:nth-child(3)::before {
    background: linear-gradient(to right, transparent, #ffc400, transparent);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(25, 34, 48, 0.8);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    position: relative;
}

.service-item:nth-child(1) .service-icon {
    color: #ffc400;
}

.service-item:nth-child(2) .service-icon {
    color: #ff3333;
}

.service-item:nth-child(3) .service-icon {
    color: #ffc400;
}

.service-icon i {
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.service-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
}

.services-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.8s;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ff3333;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}

.btn-outline:hover {
    background-color: #ff3333;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 51, 51, 0.3);
}

@media (max-width: 992px) {
    .services-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .services-title {
        font-size: 40px;
    }
    
    .emoji {
        font-size: 36px;
    }
    
    .services-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-outline, .btn-primary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 32px;
    }
    
    .emoji {
        font-size: 28px;
    }
    
    .service-item {
        padding: 30px 20px;
    }
}

/* Pricing Section */
.pricing-section {
    background-color: #192230;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 196, 0, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.pricing-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 196, 0, 0.08), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.pricing-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #ffc400;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 0.8s ease forwards;
}

.pricing-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    animation: scaleIn 1s ease forwards;
}

.pricing-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ffc400, #ffdd77);
    border-radius: 2px;
}

.pricing-description {
    max-width: 600px;
    margin: 0 auto;
    color: #cccccc;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 30px;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: #cccccc;
    transition: color 0.3s ease;
    cursor: pointer;
}

.toggle-label.active {
    color: #ffffff;
    font-weight: 600;
}

.save-badge {
    display: inline-block;
    background-color: #ffc400;
    color: #192230;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

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

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin: 0 15px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #3d474e;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #ffc400;
}

input:focus + .slider {
    box-shadow: 0 0 1px #ffc400;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

/* Pricing Card */
.pricing-card {
    background: rgba(61, 71, 78, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    animation: fadeIn 1s ease forwards;
    animation-delay: calc(0.2s * var(--i, 1));
}

.pricing-card:nth-child(1) { --i: 1; }
.pricing-card:nth-child(2) { --i: 2; }
.pricing-card:nth-child(3) { --i: 3; }

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 196, 0, 0.2);
    z-index: 2;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(61, 71, 78, 0.3), rgba(25, 34, 48, 0.7));
    border: 1px solid rgba(255, 196, 0, 0.3);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: #ffc400;
    color: #192230;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 30px;
    transform: rotate(45deg);
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Card Sections */
.card-header {
    padding: 40px 30px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-name {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.plan-price {
    margin-bottom: 20px;
}

.currency {
    font-size: 24px;
    font-weight: 500;
    vertical-align: top;
    position: relative;
    top: 8px;
    color: #ffc400;
}

.amount {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    transition: all 0.3s ease;
}

.period {
    font-size: 16px;
    color: #cccccc;
    margin-left: 5px;
}

.plan-description {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.5;
}

.card-body {
    padding: 30px;
    flex-grow: 1;
}

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

.features-list li {
    padding: 12px 0;
    color: #ffffff;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.features-list li i {
    margin-right: 12px;
    color: #ffc400;
    font-size: 14px;
}

.features-list li.disabled {
    color: #878787;
}

.features-list li.disabled i {
    color: #ff3333;
}

.card-footer {
    padding: 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-outline-pricing {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffc400;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-outline-pricing:hover {
    background: #ffc400;
    color: #192230;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 196, 0, 0.3);
}

.pricing-note {
    text-align: center;
    color: #cccccc;
    font-size: 15px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.contact-link {
    color: #ffc400;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ffc400;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.contact-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Responsive adjustments for pricing section */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .pricing-card.featured {
        grid-column: span 2;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .pricing-title {
        font-size: 36px;
    }
    
    .pricing-description {
        font-size: 16px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        grid-column: span 1;
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-15px);
    }
}

/* About Section */
.about-section {
    background-color: #2c2f38;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -250px;
    left: -250px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 196, 0, 0.08), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 3;
    animation: fadeIn 1s ease forwards;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    color: #ffffff;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ffc400;
    border-radius: 2px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.about-text p:last-child {
    font-weight: 500;
}

.about-services {
    flex: 2;
    background: rgba(25, 34, 48, 0.5);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 196, 0, 0.1);
    animation: slideInLeft 1s ease forwards;
    animation-delay: 0.3s;
    transform: translateX(30px);
    opacity: 0;
}

.about-services h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    color: #ffc400;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    background: rgba(61, 71, 78, 0.3);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: rgba(255, 196, 0, 0.15);
    transform: translateY(-5px);
}

.expertise-item i {
    font-size: 20px;
    color: #ffc400;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 196, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.expertise-item:hover i {
    background: #ffc400;
    color: #192230;
}

.expertise-item span {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-services {
        width: 100%;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .about-text h2 {
        font-size: 32px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 70px 0;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .about-text p {
        font-size: 16px;
    }
}

/* Footer Section */
.footer-section {
    background-color: #121212;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 196, 0, 0.3), transparent);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

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

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(1.1);
}

.footer-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 25px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 196, 0, 0.1);
    border-radius: 50%;
    color: #ffc400;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffc400;
    color: #121212;
    transform: translateY(-5px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ffc400;
}

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

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

.footer-links ul li a {
    color: #cccccc;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #ffc400;
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffc400;
    padding-left: 5px;
}

.footer-links ul li a:hover::before {
    width: 100%;
}

.footer-contact address {
    font-style: normal;
    margin-bottom: 25px;
}

.footer-contact address p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #cccccc;
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact address p i {
    color: #ffc400;
    margin-right: 15px;
    margin-top: 5px;
}

.btn-footer {
    display: inline-block;
    padding: 12px 25px;
    background: #ffc400;
    color: #121212;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ffc400;
}

.btn-footer:hover {
    background: transparent;
    color: #ffc400;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 196, 0, 0.2);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.copyright {
    color: #878787;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #878787;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #ffc400;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-top {
        padding: 60px 0 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-desc {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul {
        text-align: center;
    }
    
    .footer-contact address p {
        justify-content: center;
    }
    
    .footer-cta {
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
} 


.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #ffc400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #192230;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    background-color: #ffcd2c;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.floating-call-btn i {
    font-size: 24px;
}

/* Add pulse animation */
.floating-call-btn::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background-color: #ffc400;
    animation: pulse 2s infinite;
    z-index: -1;
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
    .floating-call-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .floating-call-btn i {
        font-size: 20px;
    }
}

.website-icon-container {
    background: linear-gradient(135deg, #192230 0%, #2c3e50 100%);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffc400;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.website-icon-container:hover {
    transform: translateY(-5px);
}

.website-icon-container i {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.website-icon-container:hover i {
    transform: scale(1.1);
}

.icon-label {
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 500;
}

.portfolio-overlay {
    background: rgba(25, 34, 48, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.website-icon-container:hover .portfolio-overlay {
    opacity: 1;
}

.project-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.project-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.project-features li i {
    color: #ffc400;
    margin-right: 0.5rem;
}