/* Additional component styles */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.tech-badge {
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text);
}

.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #2D3748 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.mv-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius);
}

.expertise-icon,
.service-icon,
.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pricing-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

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

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

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

input:checked + .slider {
    background-color: var(--primary);
}

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

.service-detail {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    margin: 30px 0;
    box-shadow: var(--shadow);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.faq-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.expertise-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}
/* Service Banners - Digital Silk Style */
.service-banners-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(108, 99, 255, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(108, 99, 255, 0.1);
}

.service-banner:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(108, 99, 255, 0.2);
}

/* Banner Colors (Like Digital Silk) */
.ai-web-banner {
    border-left: 6px solid #6C63FF;
}

.saas-banner {
    border-left: 6px solid #36D1DC;
}

.project-banner {
    border-left: 6px solid #FF6584;
}

.banner-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.ai-web-banner .banner-icon {
    color: #6C63FF;
}

.saas-banner .banner-icon {
    color: #36D1DC;
}

.project-banner .banner-icon {
    color: #FF6584;
}

.banner-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1A1A2E;
}

.banner-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 30px;
}

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

.banner-features li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #2D3748;
}

.banner-features i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-light {
    background: white;
    color: #6C63FF;
    border: 2px solid #6C63FF;
    padding: 14px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: #6C63FF;
    color: white;
    transform: translateY(-3px);
}
/* IT Services Boxes */
.it-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    color: white;
}

.it-services-section .section-header h2 {
    color: white;
}

.it-services-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.services-boxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    border: 1px solid rgba(108, 99, 255, 0.1);
    backdrop-filter: blur(10px);
}

.service-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(108, 99, 255, 0.3);
}

.box-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.box-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.saas-box .box-icon {
    color: #36D1DC;
    background: rgba(54, 209, 220, 0.1);
}

.project-box .box-icon {
    color: #FF6584;
    background: rgba(255, 101, 132, 0.1);
}

.consulting-box .box-icon {
    color: #6C63FF;
    background: rgba(108, 99, 255, 0.1);
}

.support-box .box-icon {
    color: #FFD166;
    background: rgba(255, 209, 102, 0.1);
}

.box-header h3 {
    font-size: 1.8rem;
    margin: 0;
    color: white;
}

.box-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.box-features li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.box-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6C63FF;
    font-weight: bold;
}

.box-features strong {
    color: white;
    font-weight: 600;
}

.box-cta {
    margin-top: 30px;
}
/* Services Preview on Homepage */
.services-preview-section {
    padding: 100px 0;
    background: white;
}

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

.preview-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.preview-card:hover {
    transform: translateY(-10px);
    border-color: #6C63FF;
    box-shadow: 0 20px 40px rgba(108, 99, 255, 0.15);
}

.preview-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.preview-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1A1A2E;
}

.preview-card p {
    color: #4A5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.preview-link {
    color: #6C63FF;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.preview-card:hover .preview-link {
    transform: translateX(5px);
}
