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

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: 0.1s;
}

/* Gold Color Scheme */
.gold-text {
    color: #FFD700;
}

.btn-gold {
    padding: 14px 35px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50px;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-outline {
    padding: 14px 35px;
    background: transparent;
    border: 1px solid #FFD700;
    border-radius: 50px;
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #FFD700;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover {
    color: #FFD700;
}

.hire-btn {
    padding: 10px 28px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50px;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.hire-btn:hover {
    transform: scale(1.05);
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #000000, #0a0a0a);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.05), transparent);
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    margin-bottom: 24px;
}

.badge-text {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #FFD700;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 18px;
    color: #a1a1aa;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat h4 {
    font-size: 36px;
    font-weight: 700;
    color: #FFD700;
}

.stat p {
    color: #a1a1aa;
    font-size: 14px;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
}

.image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent);
    filter: blur(40px);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    color: #FFD700;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.section-header p {
    color: #a1a1aa;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #0a0a0a;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.about-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.about-content p {
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-info {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    font-size: 20px;
    color: #FFD700;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

.stat-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 40px;
    color: #FFD700;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 32px;
    margin-bottom: 5px;
}

/* Services Section */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.02);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 30px;
    color: #FFD700;
}

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

.service-card p {
    color: #a1a1aa;
    margin-bottom: 20px;
}

.service-price {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50px;
    font-size: 12px;
    color: #FFD700;
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: #0a0a0a;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

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

.project-link {
    padding: 12px 24px;
    background: #FFD700;
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.project-info p {
    color: #a1a1aa;
    margin-bottom: 15px;
}

.project-tech {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project-tech span {
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50px;
    font-size: 11px;
    color: #FFD700;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.contact-content h2 {
    font-size: 36px;
    margin: 10px 0 20px;
}

.contact-content p {
    color: #a1a1aa;
}

.contact-info {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    font-size: 22px;
    color: #FFD700;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.contact-item a {
    color: #a1a1aa;
    text-decoration: none;
    transition: 0.3s;
}

.contact-item a:hover {
    color: #FFD700;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FFD700;
}

/* Footer */
footer {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo .logo-text {
    font-size: 24px;
}

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

.social-links a {
    color: #a1a1aa;
    font-size: 20px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #FFD700;
}

/* Responsive */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .nav-links, .hire-btn {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
}
@media (max-width: 768px) {
    /* Container padding */
    .container {
        padding: 0 20px;
    }

    /* Hero section */
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-title {
        font-size: 32px !important;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat h4 {
        font-size: 24px;
    }

    /* About section */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-card h3 {
        font-size: 20px;
    }

    .stat-card i {
        font-size: 24px;
    }

    /* Services section */
    .section-header h2 {
        font-size: 28px !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .service-card {
        padding: 25px;
    }

    /* Projects section */
    .projects-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .project-image {
        height: 200px;
    }

    .project-info h3 {
        font-size: 18px;
    }

    /* Contact section */
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        padding: 25px !important;
        gap: 30px;
    }

    .contact-content h2 {
        font-size: 28px;
    }

    .contact-item {
        flex-wrap: wrap;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    /* Navigation fix for mobile */
    .nav-links {
        display: none !important;
    }

    .hire-btn {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

    nav {
        padding: 15px 0;
    }

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

    .logo-text {
        font-size: 22px;
    }
}

/* Small phones (below 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px !important;
    }

    .btn-gold, .btn-outline {
        padding: 10px 20px;
        font-size: 14px;
    }

    .stat-card h3 {
        font-size: 18px;
    }

    .stat-card p {
        font-size: 10px;
    }

    .service-price {
        font-size: 10px;
    }

    .project-tech span {
        font-size: 9px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-item i {
        margin-bottom: 5px;
    }
}