/* ============================================
   Service Pages Styles
   ============================================ */

/* Header Styles */
.header-project {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header-project::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.header-project .container {
    position: relative;
    z-index: 2;
}

.header-project .caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.header-project .caption p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Content Styles */
.content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-list li {
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Benefit Items */
.benefit-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #007bff;
}

.benefit-item h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 100px;
}

.widget {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.widget h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #007bff;
}

.widget-cta {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.widget-cta h5 {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.3);
}

.widget-cta p {
    color: rgba(255,255,255,0.9);
}

.tech-tag {
    background: #f0f0f0;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #333;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 5px 5px 5px 0;
}

.tech-tag:hover {
    background: #007bff;
    color: #fff;
}

.related-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-services li {
    margin-bottom: 12px;
}

.related-services li:last-child {
    margin-bottom: 0;
}

.related-services a {
    color: #444;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.related-services a::before {
    content: '→';
    margin-right: 10px;
    color: #007bff;
    transition: transform 0.3s ease;
}

.related-services a:hover {
    background: #007bff;
    color: #fff;
    transform: translateX(5px);
}

.related-services a:hover::before {
    color: #fff;
    transform: translateX(3px);
}

/* CTA Widget */
.widget.cta-widget {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
}

.widget.cta-widget h5 {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.3);
}

.widget.cta-widget p {
    color: rgba(255,255,255,0.9);
}

/* Buttons */
.butn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.butn-rounded {
    background: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

.butn-rounded:hover {
    background: transparent;
    color: #007bff;
}

.butn-bord {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.butn-bord:hover {
    background: #1a1a1a;
    color: #fff;
}

.butn-light {
    background: #fff;
    color: #007bff;
    border: 2px solid #fff;
}

.butn-light:hover {
    background: transparent;
    color: #fff;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.feature-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.75rem;
    color: #fff;
}

.feature-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 30px 20px;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.process-step h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.95rem;
    color: #666;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item .number {
    font-size: 3rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 10px;
}

.stat-item .label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: #1a1a1a;
    padding: 80px 0 40px;
    color: #fff;
}

footer .top-content h2 {
    font-size: 3rem;
    color: #fff;
}

footer .top-content h2 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .top-content h2 a:hover {
    color: #007bff;
}

footer .main-content {
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
}

footer .logo-footer img {
    max-width: 150px;
    margin-top: 30px;
}

footer .contact-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

footer .contact-number:hover {
    color: #007bff;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #007bff;
}

footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

footer .social-icons a:hover {
    background: #007bff;
    transform: translateY(-3px);
}

/* Breadcrumb */
.breadcrumb-nav {
    padding: 15px 0;
    background: rgba(0,0,0,0.03);
}

.breadcrumb {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.breadcrumb li {
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb li + li::before {
    content: '/';
    margin: 0 10px;
    color: #999;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb span {
    color: rgba(255,255,255,0.6);
    margin: 0 8px;
    font-size: 0.9rem;
}

.breadcrumb span:last-child {
    color: rgba(255,255,255,0.8);
    margin-right: 0;
}

/* Image Gallery */
.service-gallery {
    margin-top: 40px;
}

.service-gallery img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .header-project .caption h1 {
        font-size: 3rem;
    }
    
    .content h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 991px) {
    .header-project {
        min-height: 50vh;
    }
    
    .header-project .caption h1 {
        font-size: 2.5rem;
    }
    
    .header-project .caption p {
        font-size: 1.1rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .content h2 {
        font-size: 2rem;
    }
    
    .content h3 {
        font-size: 1.5rem;
    }
    
    .sidebar {
        margin-top: 50px;
        position: relative;
        top: 0;
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }
    
    .stat-item .number {
        font-size: 2.5rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    footer .contact-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .header-project {
        min-height: 45vh;
        padding: 100px 0 60px;
    }
    
    .header-project .caption h1 {
        font-size: 2rem;
    }
    
    .header-project .caption p {
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .content h2 {
        font-size: 1.75rem;
    }
    
    .content h3 {
        font-size: 1.35rem;
    }
    
    .content p {
        font-size: 1rem;
    }
    
    .widget {
        padding: 25px;
    }
    
    .benefit-item {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .feature-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .process-step {
        padding: 20px 15px;
    }
    
    .stats-section {
        padding: 40px 0;
    }
    
    .stat-item {
        margin-bottom: 30px;
    }
    
    .stat-item .number {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    footer {
        padding: 50px 0 30px;
    }
    
    footer .top-content h2 {
        font-size: 2rem;
    }
    
    footer .contact-number {
        font-size: 1.25rem;
    }
    
    .butn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .header-project .caption h1 {
        font-size: 1.75rem;
    }
    
    .content h2 {
        font-size: 1.5rem;
    }
    
    .navbar .logo img {
        max-width: 120px;
    }
    
    .row > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Utility Classes */
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mt-80 { margin-top: 80px; }
.pt-30 { padding-top: 30px; }
.pb-30 { padding-bottom: 30px; }
.text-center { text-align: center; }
.fz-18 { font-size: 18px; }
.rest { margin: 0; padding: 0; list-style: none; }

.gap-2 { gap: 10px; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }

/* Navbar Adjustments for Service Pages */
.navbar {
    padding: 20px 0;
}

.navbar .logo img {
    max-width: 150px;
    height: auto;
}

/* Menu Icon */
.menu-icon {
    font-size: 24px;
    margin-left: 20px;
}
