* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0f0f0f;
    color: white;
    overflow-x: hidden;
}

/* FULL WIDTH SECTIONS */

section {
    width: 100%;
    max-width: none;
    padding: 80px 20px;
    position: relative;
    scroll-margin-top: 80px;
}

/* CONSISTENT CONTAINER */

.container, .nav, .hero, .cta-container, .contact-container, .about-box, .services-grid, .projects, .pricing-grid, .skills {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* IMPROVED SECTION SPACING */

section h2 {
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 700;
    line-height: 1.2;
}

section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* SECTION SEPARATION */

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2979ff, transparent);
    opacity: 0.3;
}

.white::before {
    background: linear-gradient(90deg, transparent, #2979ff, transparent);
}

.dark::before {
    background: linear-gradient(90deg, transparent, #555, transparent);
}

/* ENHANCED BLACK & WHITE THEME */

.white {
    background: #ffffff;
    color: #000000;
    padding: 120px 20px;
    position: relative;
}

.white h2 {
    color: #000000;
    margin-bottom: 60px;
}

.white p {
    color: #333333;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.dark {
    background: #0f0f0f;
    padding: 120px 20px;
    position: relative;
}

.dark h2 {
    color: #ffffff;
    margin-bottom: 60px;
}

.dark p {
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* NAV */

header {
    background: black;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav a:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn {
    background: white;
    color: black !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

/* HERO */

.hero {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.hero-left {
    flex: 1;
    text-align: center;
    padding-right: 40px;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.3;
    margin-bottom: 35px;
    font-weight: 700;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.hero-left p {
    margin: 35px auto;
    color: #e0e0e0;
    font-size: 19px;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 45px;
    text-align: center;
    font-weight: 400;
}

.hero-btn {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-btn a {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 18px;
}

.btn-primary {
    background: white;
    color: black;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.3);
}

.hero-right {
    flex: 1;
    text-align: center;
    padding-left: 40px;
}

.hero-right img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #2979ff;
    box-shadow: 0 20px 40px rgba(41, 121, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-right img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(41, 121, 255, 0.4);
}

/* WHITE SECTION */

.white {
    background: white;
    color: black;
    padding: 80px 20px;
    text-align: center;
}

/* SERVICES WITH ENHANCED CARDS */

.services-grid {
    max-width: 1200px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 0;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #2979ff;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
    color: #2979ff;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #444444;
}

.service-features li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
}

/* PREMIUM PRICING */

.pricing-grid {
    max-width: 800px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.pricing-card {
    background: #ffffff;
    padding: 0;
    border-radius: 20px;
    border: 2px solid #e8e8e8;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.pricing-card.premium {
    border-color: #2979ff;
    box-shadow: 0 20px 50px rgba(41, 121, 255, 0.15);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(41, 121, 255, 0.25);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 0 20px;
}

.pricing-icon {
    font-size: 64px;
    margin-bottom: 15px;
    color: #2979ff;
}

.pricing-info {
    flex: 1;
    text-align: left;
}

.pricing-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #000000;
    font-weight: 600;
}

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

.currency {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.amount {
    font-size: 42px;
    font-weight: 700;
    color: #2979ff;
    display: block;
    line-height: 1.2;
}

.usd {
    font-size: 18px;
    color: #666;
    margin-left: 5px;
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff4444;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-badge.popular {
    background: #28a745;
}

.pricing-features {
    text-align: left;
    margin: 30px 0;
}

.feature-group {
    margin-bottom: 25px;
}

.feature-group h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #000000;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-group ul {
    list-style: none;
    text-align: left;
}

.feature-group li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #444444;
}

.feature-group li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 8px;
}

.price-comparison {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.original {
    text-decoration: line-through;
    color: #999;
}

.discount {
    color: #28a745;
    font-weight: 600;
}

.arrow {
    color: #28a745;
    font-size: 20px;
    margin: 0 10px;
}

.cta-section {
    background: linear-gradient(135deg, #f8f9fa, #e8f9fa);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 30px;
}

.cta-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.cta-section p {
    color: #666;
    margin-bottom: 20px;
}

/* PROJECT IMAGE PREVIEW CARDS */

.project-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    border: 3px solid #1a1a1a;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41, 121, 255, 0.9), rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    cursor: pointer;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.overlay-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.overlay-content p {
    font-size: 14px;
    color: #e0e0e0;
    margin: 0;
}

.project-image-container:hover .image-overlay {
    opacity: 1;
}

.project-image-container:hover .overlay-content {
    transform: translateY(0);
}

.project-image-container:hover .project-image {
    transform: scale(1.1);
    filter: brightness(0.7);
}

/* ENHANCED CASE STUDY CARDS */

.case-study-card {
    background: #1a1a1a;
    padding: 0;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(41, 121, 255, 0.2);
    border-color: #2979ff;
}

.case-study-card .project-header {
    padding: 25px 25px 15px;
}

.case-study-card .case-content {
    padding: 0 25px 20px;
}

.case-study-card .project-actions {
    padding: 20px 25px 25px;
    border-top: 1px solid #333;
}

/* RESPONSIVE PROJECT CARDS */

@media (max-width: 768px) {
    .project-image-container {
        height: 160px;
    }
    
    .overlay-content h4 {
        font-size: 18px;
    }
    
    .overlay-content p {
        font-size: 12px;
    }
    
    .case-study-card .project-header,
    .case-study-card .case-content,
    .case-study-card .project-actions {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .project-image-container {
        height: 140px;
    }
    
    .overlay-content h4 {
        font-size: 16px;
    }
    
    .overlay-content p {
        font-size: 11px;
    }
}

.pricing-cta-btn {
    background: #2979ff;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(41, 121, 255, 0.2);
}

.pricing-cta-btn:hover {
    background: #1d6fd8;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(41, 121, 255, 0.4);
}

/* MOBILE */

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-features li {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 8px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .pricing-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .pricing-features {
        margin: 20px 0;
    }
    
    .feature-group {
        margin-bottom: 20px;
    }
    
    .price-comparison {
        display: none;
    }
    
    .cta-section {
        padding: 20px;
    }
}

/* NAVIGATION STYLES */

.main-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.main-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.main-nav li a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* DROPDOWN STYLES */

.dropdown {
    position: relative;
}

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

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a2e;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    min-width: 180px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 12px 16px;
    transition: all 0.2s ease;
    font-size: 14px;
    border-bottom: 1px solid transparent;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.dropdown-menu li:first-child a {
    border-radius: 8px 8px 0 0;
}

.dropdown-menu li:last-child a {
    border-radius: 0 0 8px 8px;
}

/* CONTACT CTA BUTTON */

.nav-cta {
    margin-left: auto;
}

.contact-btn {
    background: linear-gradient(135deg, #7f5af0, #6d4cce);
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(127, 90, 240, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 90, 240, 0.4);
}

/* MOBILE MENU TOGGLE */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        z-index: 1000;
    }
    
    .main-nav.active {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav li {
        width: 100%;
        text-align: center;
    }
    
    .main-nav li a {
        display: block;
        width: 100%;
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-cta {
        display: none;
    }
    
    /* Mobile dropdown styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 10px;
        border-radius: 8px;
    }
    
    .dropdown-arrow {
        display: none;
    }
}

/* IMPROVED MOBILE RESPONSIVENESS */

    .hero-left p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 100px 15px;
    }
    
    section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    section p {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .nav {
        padding: 20px 15px;
    }
    
    .nav ul {
        gap: 20px;
    }
    
    .nav a {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 15px;
        min-height: auto;
    }
    
    .hero-left, .hero-right {
        padding: 0;
        flex: none;
    }
    
    .hero-left h1 {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .hero-left p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-btn {
        gap: 15px;
    }
    
    .hero-btn a {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .hero-right img {
        width: 250px;
        height: 250px;
        margin-top: 40px;
    }
    
    .white, .dark {
        padding: 60px 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .pricing-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .pricing-features {
        margin: 20px 0;
    }
    
    .feature-group {
        margin-bottom: 20px;
    }
    
    .price-comparison {
        display: none;
    }
    
    .cta-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 10px;
    }
    
    section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .hero-left h1 {
        font-size: 32px;
    }
    
    .hero-btn {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-btn a {
        width: 200px;
        text-align: center;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav a {
        text-align: center;
    }
}

/* PRICING CARDS */

.pricing-grid {
    max-width: 600px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #ccc;
}

.pricing-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.price-tag {
    margin: 20px 0;
}

.currency {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.amount {
    font-size: 36px;
    font-weight: 700;
    color: #2979ff;
    display: block;
}

.usd {
    font-size: 18px;
    color: #666;
    margin-left: 5px;
}

.pricing-desc {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

.pricing-features {
    text-align: left;
    margin: 25px 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
}

.check {
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
    font-size: 16px;
}

.payment-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.payment-info h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.payment-info ul {
    list-style: none;
    text-align: left;
}

.payment-info li {
    margin-bottom: 5px;
    color: #555;
    font-size: 14px;
}

.startup-badge {
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

/* ABOUT */

.about {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
    display: flex;
    justify-content: space-between;
}

.about-right {
    display: flex;
    gap: 40px;
}

/* DARK */

.dark {
    background: #0b0b0b;
    padding: 80px 20px;
    text-align: center;
}

/* WHY ME SECTION */

.why-me-grid {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.why-me-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    text-align: center;
}

.why-me-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(41, 121, 255, 0.2);
    border-color: #2979ff;
}

.why-me-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2979ff;
    text-align: center;
}

.why-me-content {
    text-align: center;
}

.why-me-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.why-me-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* RESPONSIVE WHY ME SECTION */

@media (max-width: 768px) {
    .why-me-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .why-me-card {
        padding: 25px 20px;
    }
    
    .why-me-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }
    
    .why-me-content h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .why-me-content p {
        font-size: 15px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .why-me-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .why-me-card {
        padding: 20px 15px;
    }
    
    .why-me-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .why-me-content h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .why-me-content p {
        font-size: 14px;
        line-height: 1.4;
    }
}

/* EXPERIENCE TIMELINE */

.experience-timeline {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    position: relative;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, #2979ff, transparent);
    transform: translateX(-50%);
}

.experience-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    background: #ffffff;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(41, 121, 255, 0.2);
}

.experience-date {
    flex: 0 0 120px;
    background: #2979ff;
    color: #ffffff;
    padding: 20px;
    border-radius: 15px 0 0;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.experience-date::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-top: 8px solid #ffffff;
    border-right: 8px solid #ffffff;
}

.experience-content {
    flex: 1;
    padding: 30px;
}

.experience-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.experience-content h4 {
    font-size: 16px;
    font-weight: 500;
    color: #2979ff;
    margin-bottom: 15px;
}

.experience-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 20px;
}

.experience-content ul {
    list-style: none;
    padding: 0;
}

.experience-content li {
    font-size: 14px;
    line-height: 1.5;
    color: #444444;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.experience-content li::before {
    content: "•";
    color: #2979ff;
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 0;
}

/* RESPONSIVE EXPERIENCE */

@media (max-width: 768px) {
    .experience-timeline {
        padding: 0 15px;
    }
    
    .experience-item {
        flex-direction: column;
        margin-bottom: 30px;
    }
    
    .experience-date {
        flex: 0 0 auto;
        width: 100%;
        border-radius: 10px 10px 10px 0;
        font-size: 14px;
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .experience-date::after {
        display: none;
    }
    
    .experience-content {
        padding: 25px 20px;
    }
    
    .experience-content h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .experience-content h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .experience-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .experience-content li {
        font-size: 13px;
        margin-bottom: 6px;
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .experience-timeline {
        padding: 0 10px;
    }
    
    .experience-item {
        margin-bottom: 25px;
    }
    
    .experience-date {
        font-size: 13px;
        padding: 12px;
    }
    
    .experience-content {
        padding: 20px 15px;
    }
    
    .experience-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .experience-content h4 {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .experience-content p {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .experience-content li {
        font-size: 12px;
        margin-bottom: 5px;
        padding-left: 10px;
    }
}

/* SKILLS CATEGORIES */

.skills-categories {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.skill-category {
    margin-bottom: 40px;
}

.skill-category h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.skill-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2979ff, transparent);
    border-radius: 2px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    max-width: 100%;
    margin: 0 auto;
}

.skills-grid span {
    background: #1a1a1a;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.skills-grid span:hover {
    background: #2979ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 121, 255, 0.3);
    border-color: #2979ff;
}

/* RESPONSIVE SKILLS CATEGORIES */

@media (max-width: 768px) {
    .skills-categories {
        padding: 0 15px;
    }
    
    .skill-category {
        margin-bottom: 30px;
    }
    
    .skill-category h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 12px;
    }
    
    .skills-grid span {
        font-size: 13px;
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .skills-categories {
        padding: 0 10px;
    }
    
    .skill-category {
        margin-bottom: 25px;
    }
    
    .skill-category h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 10px;
    }
    
    .skills-grid span {
        font-size: 12px;
        padding: 8px 10px;
    }
}

/* SKILLS */

.skills {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.skills span {
    background: #141414;
    padding: 20px;
    border-radius: 10px;
}

/* PROJECTS */

.projects {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.p-card {
    background: #141414;
    padding: 25px;
    border-radius: 12px;

    /* FIX */
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.p-card p {
    margin: 10px 0;
    line-height: 1.5;
    color: #ddd;
}

.p-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.p-btn {
    margin-top: 20px;
}

.p-btn a {
    background: white;
    color: black;
    padding: 8px 14px;
    margin-right: 8px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}

/* CASE STUDY CARDS */

.case-study-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.project-image-container {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 0;
}

.project-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.project-image-container:hover .image-overlay {
    opacity: 1;
}

.project-image-container:hover .project-image {
    transform: scale(1.05);
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #fff;
}

.overlay-content p {
    font-size: 14px;
    color: #ccc;
    margin: 0;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: #444;
}

.case-study-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.tech-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.badge {
    background: #2979ff;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.case-content {
    flex: 1;
}

.case-content h4 {
    font-size: 14px;
    color: #2979ff;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

.case-content p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.problem, .solution, .result {
    margin-bottom: 15px;
    padding: 15px;
    background: #0f0f0f;
    border-radius: 8px;
}

.btn-link {
    background: white;
    color: black;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-right: 8px;
}

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

/* MOBILE */

@media (max-width: 768px) {
    .case-study-card {
        min-height: auto;
        padding: 20px;
    }
    
    .tech-badges {
        justify-content: center;
    }
    
    .case-content h4 {
        font-size: 13px;
    }
    
    .case-content p {
        font-size: 13px;
    }
}

/* PRICING */

.price {
    max-width: 500px;
    margin: auto;
    border: 1px solid #ddd;
    padding: 40px;
    border-radius: 12px;
}

.price ul {
    text-align: left;
    margin: 20px 0;
}

.price li {
    margin: 10px 0;
}

/* CONTACT */

.center {
    text-align: center;
}

.send {
    display: inline-block;
    background: white;
    color: black;
    padding: 12px 20px;
    margin-top: 20px;
    border-radius: 6px;
    text-decoration: none;
}

/* FOOTER */

footer {
    background: black;
    padding: 20px;
    text-align: center;
    color: #aaa;
}

/* MOBILE */

@media(max-width:900px) {

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

    .hero-right {
        margin-top: 30px;
    }

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

    .about-right {
        justify-content: center;
        margin-top: 20px;
    }

    .nav ul {
        display: none;
    }

}

/* ABOUT SECTION */

.about-center {
    background: #f2f2f2;
    padding: 120px 20px;
}

.about-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.about-box h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #000;
    font-weight: 700;
    line-height: 1.2;
}

.about-box h3 {
    font-size: 28px;
    margin: 50px 0 25px;
    color: #111;
    font-weight: 600;
    line-height: 1.3;
}

.about-box p {
    font-size: 19px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-box strong {
    color: #000;
    font-weight: 700;
    background: linear-gradient(135deg, #f0f0f0, #1a1a1a);
    padding: 2px 6px;
    border-radius: 4px;
}

/* MOBILE */

@media (max-width: 768px) {
    .about-center {
        padding: 80px 15px;
    }
    
    .about-box {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .about-box h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .about-box h3 {
        font-size: 24px;
        margin: 35px 0 20px;
    }
    
    .about-box p {
        font-size: 17px;
        line-height: 1.7;
        margin-bottom: 20px;
        text-align: left;
    }
}

/* ABOUT WHITE SECTION */

.about-white {
    background: #f2f2f2;
    padding: 90px 20px;
}

.about-wrap {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* LEFT */

.about-info {
    flex: 2;
}

.about-info h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #000;
}

.about-info p {
    font-size: 17px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
}


/* RIGHT */

.about-stats {
    flex: 1;
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 30px;
}

.stat h3 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
}

.stat span {
    font-size: 16px;
    color: #444;
}


/* MOBILE */

@media(max-width:900px) {

    .about-wrap {
        flex-direction: column;
        text-align: center;
    }

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

}

.about-info h3 {
    margin: 20px 0 10px;
    font-size: 22px;
    color: #111;
}

/* ABOUT LIGHT SECTION */

.about-light {
    background: #f2f2f2;
    /* same light background */
    padding: 90px 20px;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: flex-start;
}

/* LEFT */

.about-left {
    flex: 2;
}

.about-left h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #000;
}

.about-left h3 {
    margin: 25px 0 10px;
    font-size: 22px;
    color: #111;
}

.about-left p {
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 12px;
}


/* RIGHT */

.about-right {
    flex: 1;
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 25px;
}

.stat h3 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
}

.stat span {
    font-size: 16px;
    color: #444;
}


/* MOBILE */

@media(max-width:900px) {

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-right {
        margin-top: 30px;
        justify-content: center;
    }

}

/* CONTACT SECTION */

.contact-section {
    background: #000;
    color: #fff;
    padding: 90px 20px;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.contact-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-text {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 10px;
}

.contact-number {
    font-size: 20px;
    margin-bottom: 50px;
    color: #fff;
}


/* CONTACT BOX */

.contact-box {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}


/* CARD */

.contact-card {
    background: #111;
    padding: 35px 25px;
    width: 270px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 15px;
    color: #aaa;
    margin-bottom: 25px;
}


/* BUTTON */

.contact-btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}


/* CALL */

.contact-btn.call {
    background: #007bff;
    color: #fff;
}

.contact-btn.call:hover {
    background: #0056b3;
}


/* EMAIL */

.contact-btn.email {
    background: #fff;
    color: #000;
}

.contact-btn.email:hover {
    background: #ddd;
}


/* WHATSAPP */

.contact-btn.whatsapp {
    background: #25D366;
    color: #fff;
}

.contact-btn.whatsapp:hover {
    background: #1ebe5d;
}


/* MOBILE */

@media(max-width:768px) {

    .contact-box {
        flex-direction: column;
        align-items: center;
    }

}

/* ================= ABOUT SECTION ================= */

.about-center {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    /* Enhanced light background with gradient */
    padding: 90px 20px;
    position: relative;
}

.about-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(127, 90, 240, 0.05), rgba(127, 90, 240, 0.02));
    pointer-events: none;
}

.about-box {
    max-width: 800px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(127, 90, 240, 0.1);
}

/* Headings */

.about-box h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a2e;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-box h3 {
    font-size: 28px;
    margin: 40px 0 25px;
    color: #2d2d44;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
}

.about-box h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7f5af0, #9d7ff0);
    border-radius: 2px;
}

/* Paragraphs */

.about-box p {
    font-size: 20px;
    color: #4a4a6a;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 400;
    text-align: left;
    background: rgba(255, 255, 255, 0.7);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #7f5af0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-box p:first-of-type {
    background: linear-gradient(135deg, rgba(127, 90, 240, 0.08), rgba(127, 90, 240, 0.04));
    border-left: 4px solid #7f5af0;
    font-size: 22px;
    font-weight: 500;
    color: #2d2d44;
}

/* ================= FAQ SECTION ================= */

.faq-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.faq-container {
    max-width: 1000px;
    margin: auto;
}

.faq-title {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a2e;
    font-weight: 700;
}

.faq-list {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(127, 90, 240, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(127, 90, 240, 0.2);
}

.faq-question h4 {
    font-size: 18px;
    color: #7f5af0;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.faq-answer p {
    font-size: 16px;
    color: #4a4a6a;
    line-height: 1.6;
    margin: 0;
    padding: 15px;
    background: rgba(127, 90, 240, 0.05);
    border-radius: 8px;
    border-left: 3px solid #7f5af0;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .faq-section {
        padding: 60px 15px;
    }
    
    .faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question h4 {
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 14px;
        padding: 12px;
    }
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width:600px) {

    .about-center {
        padding: 60px 15px;
    }

    .about-box {
        max-width: 100%;
        text-align: left;
        /* Better reading on phone */
    }

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

    .about-box h3 {
        font-size: 20px;
        margin: 25px 0 15px;
    }

    .about-box p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

}

/* PRICING SECTION */

#pricing {
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: 80px 20px;
  background: #05050a;
  box-sizing: border-box;
}

/* Container - Full Width */
.pricing-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Grid - Full Width Coverage */
.pricing-grid {
  display: grid;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
  /* Desktop: 3 columns full width */
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Cards - Stretch Full Space */
.pricing-card {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 40px 30px;
  box-sizing: border-box;
  
  background: linear-gradient(180deg, #0c0c17, #05050a);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  
  display: flex;
  flex-direction: column;
  
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: #7f5af0;
}

/* Title */
.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

/* Value Line */
.value-line {
  font-size: 16px;
  color: #a8a8b8;
  margin-bottom: 15px;
  text-align: center;
  font-style: italic;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border-left: 3px solid #7f5af0;
}

/* Price */
.price-box {
  background: rgba(127,90,240,0.12);
  border: 1px solid rgba(127,90,240,0.45);
  border-radius: 14px;
  
  padding: 20px 10px;
  margin-bottom: 30px;
  
  font-size: 34px;
  font-weight: 700;
  color: #7f5af0;
}

/* Features */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
  text-align: left;
}

.pricing-features li {
  margin: 12px 0;
  font-size: 15px;
  color: #ddd;
  line-height: 1.6;
}

/* Tick */
.pricing-features li::before {
  content: "✓";
  color: #7f5af0;
  margin-right: 10px;
  font-weight: bold;
}

/* Tax Note */
.pricing-tax-note {
  text-align: center;
  margin: 40px auto 0;
  max-width: 700px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.05));
  border: 2px solid rgba(255, 193, 7, 0.3);
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.15);
  position: relative;
}

.pricing-tax-note::before {
  content: '⚠️';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffc107;
  color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.pricing-tax-note p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0;
  font-weight: 600;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid #ffc107;
}

/* Button container */
.pricing-btn {
  margin-top: auto;
}

/* Button */
.pricing-btn a {
  display: block;
  padding: 15px;
  background: #7f5af0;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.pricing-btn a:hover {
  background: #6846e5;
}

/* Popular Badge */
.pricing-card.popular {
  position: relative;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #7f5af0;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* =========================
   TABLET (2 columns)
========================= */

@media (max-width: 900px) {
  #pricing {
    padding: 60px 15px;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .pricing-card {
    padding: 35px 25px;
  }
}

/* =========================
   MOBILE (1 column)
========================= */

@media (max-width: 600px) {
  #pricing {
    padding: 40px 10px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .pricing-card {
    padding: 30px 20px;
  }
  
  .pricing-card h3 {
    font-size: 22px;
  }
  
  .price-box {
    font-size: 28px;
    padding: 16px 8px;
  }
  
  .pricing-features li {
    font-size: 14px;
  }
  
  .pricing-btn a {
    padding: 14px;
    font-size: 14px;
  }
}

/* ================================
   MANAGED WEBSITE CARE SECTION
================================ */

#managed-care {
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0a0a0f, #05050a);
  box-sizing: border-box;
}

/* Container - Full Width */
.managed-care-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Card - Premium Design */
.managed-care-card {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 40px;
  box-sizing: border-box;
  
  background: linear-gradient(180deg, #1a1a2e, #0f0f1e);
  border: 1px solid rgba(127, 90, 240, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(127, 90, 240, 0.2), 
              0 10px 30px rgba(0, 0, 0, 0.3);
  
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
  min-height: auto;
}

.managed-care-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 50px rgba(127, 90, 240, 0.3), 
              0 15px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(127, 90, 240, 0.5);
}

/* Title */
.managed-care-card h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 700;
}

/* Price */
.managed-care-price {
  font-size: 36px;
  font-weight: 700;
  color: #7f5af0;
  margin-bottom: 15px;
  background: rgba(127, 90, 240, 0.1);
  border: 1px solid rgba(127, 90, 240, 0.3);
  border-radius: 12px;
  padding: 15px 25px;
  display: inline-block;
}

/* Tagline */
.managed-care-tagline {
  font-size: 18px;
  color: #a8a8b8;
  margin-bottom: 25px;
  font-style: italic;
}

/* Description */
.managed-care-description {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Grid */
.managed-care-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
  text-align: left;
}

.feature-item {
  font-size: 15px;
  color: #ccc;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid #7f5af0;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(127, 90, 240, 0.1);
  transform: translateX(5px);
}

/* Footer Text */
.managed-care-footer {
  font-size: 14px;
  color: #888;
  margin-bottom: 30px;
  font-style: italic;
}

/* Button */
.managed-care-btn {
  margin-top: 20px;
}

.managed-care-btn a {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(45deg, #7f5af0, #a855f7);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(127, 90, 240, 0.3);
}

.managed-care-btn a:hover {
  background: linear-gradient(45deg, #6846e5, #9333ea);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(127, 90, 240, 0.4);
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {
  #managed-care {
    padding: 60px 15px;
  }
  
  .managed-care-card {
    padding: 40px 30px;
  }
  
  .managed-care-card h2 {
    font-size: 28px;
  }
  
  .managed-care-price {
    font-size: 32px;
    padding: 12px 20px;
  }
  
  .managed-care-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {
  #managed-care {
    padding: 40px 12px;
  }
  
  .managed-care-card {
    padding: 30px 20px;
  }
  
  .managed-care-card h2 {
    font-size: 24px;
  }
  
  .managed-care-price {
    font-size: 28px;
    padding: 10px 15px;
  }
  
  .managed-care-tagline {
    font-size: 16px;
  }
  
  .managed-care-description {
    font-size: 14px;
  }
  
  .feature-item {
    font-size: 14px;
    padding: 10px 12px;
  }
  
  .managed-care-btn a {
    padding: 15px 30px;
    font-size: 14px;
  }
}

/* ===================================
   CASE STUDIES FORCE RESET
================================ */

.case-studies,
#case-studies,
section[id="case-studies"] {
  height: auto !important;
  min-height: auto !important;
  overflow: visible !important;
  margin-top: 0 !important;
  padding-top: 100px !important;
  padding-bottom: 80px !important;
  position: relative !important;
  display: block !important;
  visibility: visible !important;
  z-index: 1 !important;
}

/* PROJECTS SECTION SPECIFIC */
.projects {
  height: auto !important;
  min-height: auto !important;
  overflow: visible !important;
  margin-top: 0 !important;
  padding-top: 100px !important;
  padding-bottom: 80px !important;
  position: relative !important;
  display: block !important;
  visibility: visible !important;
  z-index: 1 !important;
}

/* CASE STUDY CARDS */
.case-study-card {
  height: auto !important;
  min-height: auto !important;
  overflow: visible !important;
  display: block !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 1 !important;
}

/* PROJECT IMAGES */
.project-image-container {
  height: auto !important;
  min-height: auto !important;
  overflow: visible !important;
  display: block !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 1 !important;
}

.project-image {
  height: auto !important;
  min-height: auto !important;
  overflow: visible !important;
  display: block !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 1 !important;
}

/* REMOVE ANY BLUE TEXT OR OVERLAYS */
.projects * {
  color: inherit !important;
}

.case-study-card * {
  color: inherit !important;
}

.project-image-container * {
  color: inherit !important;
}

/* ENSURE CONTENT IS VISIBLE */
section#projects h2,
section#projects p,
section#projects .case-study-card,
section#projects .project-image-container,
section#projects .project-image,
section#projects .project-actions,
section#projects .btn-link {
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
}

/* PROJECT ACTIONS AND BUTTONS */
.project-actions {
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
  position: relative !important;
  z-index: 10 !important;
}

.btn-link {
  visibility: visible !important;
  opacity: 1 !important;
  display: inline-block !important;
  position: relative !important;
  z-index: 10 !important;
  color: inherit !important;
  background: white !important;
  padding: 10px 16px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.btn-link:hover {
  visibility: visible !important;
  opacity: 0.8 !important;
  background: #f0f0f0 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(255,255,255,0.2) !important;
}

/* FORCE ALL PROJECT CONTENT VISIBLE */
.projects * {
  visibility: visible !important;
  opacity: 1 !important;
}

.case-study-card * {
  visibility: visible !important;
  opacity: 1 !important;
}

.project-image-container * {
  visibility: visible !important;
  opacity: 1 !important;
}

/* REMOVE ANY OVERLAYS OR HIDING ELEMENTS */
.projects::before,
.projects::after,
.case-study-card::before,
.case-study-card::after,
.project-image-container::before,
.project-image-container::after {
  display: none !important;
}

.project-image-container * {
  visibility: visible !important;
  opacity: 1 !important;
}

/* BUTTON ICONS AND TEXT */
.btn-icon {
  visibility: visible !important;
  opacity: 1 !important;
  display: inline !important;
  position: relative !important;
  z-index: 10 !important;
  color: inherit !important;
  font-size: inherit !important;
}

/* ALL BUTTON ELEMENTS */
.btn-link span,
.btn-link *,
.project-actions *,
.project-actions a,
.project-actions a span {
  visibility: visible !important;
  opacity: 1 !important;
  display: inline-block !important;
  position: relative !important;
  z-index: 10 !important;
  color: inherit !important;
}

/* FORCE BUTTON CONTAINER VISIBLE */
.project-actions {
  visibility: visible !important;
  opacity: 1 !important;
  display: flex !important;
  position: relative !important;
  z-index: 10 !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  margin-top: 20px !important;
}

/* MAXIMUM BUTTON VISIBILITY */
.btn-link {
  visibility: visible !important;
  opacity: 1 !important;
  display: inline-flex !important;
  position: relative !important;
  z-index: 10 !important;
  color: black !important;
  background: white !important;
  padding: 10px 16px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  align-items: center !important;
  gap: 5px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
  border: 1px solid #ddd !important;
  cursor: pointer !important;
}

.btn-link:hover {
  visibility: visible !important;
  opacity: 0.9 !important;
  background: #f0f0f0 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
}

/* UNIVERSAL BUTTON FIX - TARGET ALL POSSIBLE BUTTONS */
a[href*="github.com"],
a[href*="vercel.app"],
a[href*="github"],
a[href*="demo"],
a[href*="live"],
a:has(span:contains("View Code")),
a:has(span:contains("Live Demo")) {
  visibility: visible !important;
  opacity: 1 !important;
  display: inline-flex !important;
  position: relative !important;
  z-index: 10 !important;
  color: black !important;
  background: white !important;
  padding: 10px 16px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  align-items: center !important;
  gap: 5px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
  border: 1px solid #ddd !important;
  cursor: pointer !important;
  margin-right: 10px !important;
  margin-bottom: 10px !important;
}

/* FORCE ALL LINKS IN PROJECT ACTIONS */
.project-actions a,
.case-study-card a,
.projects a {
  visibility: visible !important;
  opacity: 1 !important;
  display: inline-flex !important;
  position: relative !important;
  z-index: 10 !important;
  color: black !important;
  background: white !important;
  padding: 10px 16px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  align-items: center !important;
  gap: 5px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
  border: 1px solid #ddd !important;
  cursor: pointer !important;
  margin-right: 10px !important;
  margin-bottom: 10px !important;
}

/* REMOVE ANY MARKDOWN STYLING */
.projects a[href],
.project-actions a[href] {
  color: black !important;
  text-decoration: none !important;
  background: white !important;
  border: 1px solid #ddd !important;
  padding: 10px 16px !important;
  border-radius: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
}