/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --blue-color: #0056b3;
    --orange-color: #ff6600;
    --orange-hover: #e65c00;
    --dark-color: #2d3436;
    --light-bg: #f8f9fa;
    --white-color: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body { 
    font-family: 'Poppins', sans-serif; 
    overflow-x: hidden;
    color: var(--dark-color);
}

.text-blue {
    color: var(--blue-color); 
}

.text-white-50 {
    color: #94a3b8 !important; /* Soft grey for better readability */
    line-height: 1.8;
}

.text-orange { color: #ff6600; }

/* ============================================
     PREMIUM NAVBAR STYLES
   ============================================ */

.navbar {
    padding: 0;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 5px 0;
    background: white !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-nav {
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: #1e293b !important;
    padding: 12px 18px !important;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.nav-link:hover {
    color: var(--orange-color) !important;
    background: rgba(255, 102, 0, 0.08);
}

.nav-link.active {
    color: var(--orange-color) !important;
    background: rgba(255, 102, 0, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--orange-color);
    border-radius: 3px;
}

/* Dropdown Hover Effect - Desktop */
@media (min-width: 992px) {
    .dropdown-hover:hover .dropdown-menu {
        display: block;
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
    
    .dropdown-hover .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
        top: 100%;
        left: 0;
        margin-top: 0;
        min-width: 240px;
    }
    
    .dropdown-hover .dropdown-menu.dropdown-menu-end {
        left: auto;
        right: 0;
    }
}

/* Dropdown Menu Styling */
.dropdown-menu {
    border: none;
    border-radius: 16px;
    padding: 12px 0;
    margin-top: 8px;
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    min-width: 240px;
}

.dropdown-item {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.dropdown-item i {
    font-size: 16px;
    width: 24px;
    color: var(--orange-color);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(255, 102, 0, 0.08);
    color: var(--orange-color);
    transform: translateX(5px);
}

.dropdown-item:hover i {
    transform: scale(1.1);
}

.dropdown-divider {
    margin: 8px 0;
    background: rgba(0, 0, 0, 0.05);
}

/* Navbar Button */
.btn-nav {
    background: var(--orange-color);
    color: white !important;
    padding: 8px 22px !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-nav:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.35);
    color: white !important;
}

/* Mobile View Optimizations */
@media (max-width: 991.98px) {
    .navbar {
        padding: 12px 0;
    }
    
    .navbar-collapse {
        background: white;
        border-radius: 20px;
        padding: 20px;
        margin-top: 15px;
        box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        gap: 5px;
    }
    
    .nav-link {
        padding: 12px 16px !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    /* Mobile Dropdown Toggle */
    .dropdown-toggle::after {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .dropdown-menu {
        background: #f8fafc;
        border-radius: 12px;
        padding: 8px 0;
        margin: 5px 0 10px 15px;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .dropdown-item {
        padding: 10px 20px;
    }
    
    .btn-nav {
        margin-top: 10px;
        text-align: center;
        justify-content: center;
    }
    
    /* Active link in mobile */
    .nav-link.active {
        background: rgba(255, 102, 0, 0.1);
        color: var(--orange-color) !important;
        border-radius: 50px;
    }
}

/* Scroll Effect */
@media (min-width: 992px) {
    .navbar.scrolled .nav-link {
        padding: 10px 18px !important;
    }
    
    .navbar.scrolled .btn-nav {
        padding: 6px 20px !important;
    }
}

/* Small devices */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 40px;
    }
    
    .navbar-collapse {
        padding: 15px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 10px 14px !important;
    }
}

/* Button Styling */
.btn-orange { 
    background-color: var(--orange-color); 
    border: none; 
    padding: 10px 25px;
    border-radius: 50px; /* Modern rounded look */
    font-weight: 600;
    color: white !important;
    transition: 0.3s all ease-in-out; 
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-orange:hover { 
    background-color: var(--orange-hover); 
    transform: translateY(-3px); 
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

/* ============================================
     HOME PAGE STYLES
   ============================================ */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.hero-img {
    max-width: 100%;
    height: auto;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Service Cards */
.service-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,86,179,0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(0,86,179,0.08);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 38px;
    color: var(--blue-color);
}

.service-card:hover .service-icon {
    background: var(--blue-color);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--orange-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-link:hover {
    transform: translateX(5px);
    color: var(--orange-hover);
}

/* btn-outline-orange */
.btn-outline-orange {
    background: transparent;
    border: 2px solid var(--orange-color);
    color: var(--orange-color);
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-orange:hover {
    background: var(--orange-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,102,0,0.3);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 60px 0;
}

.stat-item {
    padding: 15px;
    transition: all 0.3s ease;
}

.stat-item h2 {
    font-size: 42px;
    /* color: white; */
}

.stat-item p {
    color: #94a3b8;
}

/* Why Choose Cards */
.why-card {
    display: flex;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.why-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.why-card i {
    font-size: 28px;
    color: var(--orange-color);
    flex-shrink: 0;
}

.why-card h6 {
    margin-bottom: 4px;
    font-size: 16px;
}

.why-card p {
    font-size: 13px;
}

/* Process Cards */
.process-card {
    padding: 20px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.process-number {
    position: absolute;
    top: -10px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--orange-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.process-card i {
    font-size: 48px;
    color: var(--blue-color);
    margin: 15px 0 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--blue-color) 0%, var(--orange-color) 100%);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-section h1 {
        font-size: 32px;
    }
    
    .stat-item h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
    }
    
    .service-icon i {
        font-size: 32px;
    }
    
    .why-card {
        padding: 12px 15px;
    }
    
    .process-card {
        padding: 15px;
    }
    
    .process-card i {
        font-size: 36px;
    }
    
    .process-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
        top: -8px;
        right: 10px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 28px;
    }
    
    .stat-item h2 {
        font-size: 28px;
    }
    
    .stat-item p {
        font-size: 12px;
    }
}

/* ============================================
     PROFESSIONAL FOOTER STYLES - COMPLETE
     Primary Color: #e65c00
   ============================================ */

.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 60px 0 0;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

/* Decorative top border */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e65c00, #ff884d, #e65c00);
}

/* Footer Grid Layout - Desktop 4 columns */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer Logo */
.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

/* Brand Column */
.footer-description {
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #cbd5e1;
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
}

.social-links a:hover {
    background: #e65c00;
    color: white !important;
    transform: translateY(-3px);
}

/* Footer Titles */
.footer-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #e65c00;
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    font-size: 16px;
    color: #e65c00;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #e65c00;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-info li i {
    font-size: 18px;
    color: #e65c00;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-info li div {
    flex: 1;
}

.contact-info li strong {
    display: block;
    color: white;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-info li span,
.contact-info li a {
    color: #cbd5e1;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.contact-info li a:hover {
    color: #e65c00;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-content p {
    color: #94a3b8;
    font-size: 13px;
    margin: 0;
}

.footer-bottom-content p i {
    font-size: 12px;
    color: #e65c00;
}

.footer-legal {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #e65c00;
}

/* --- Mobile Responsive & Attractive Fix --- */

@media (max-width: 576px) {
    .footer-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 30px 0; /* Vertical spacing */
    }

    /* 1. Brand Info (Full Width) */
    .brand-col {
        flex: 0 0 100%;
        text-align: center; /* Logo aur description center mein */
    }
    
    .social-links {
        justify-content: center; /* Social icons center mein */
    }

    /* 2. Quick Links & Our Services (Side-by-Side 50/50) */
    .footer-col:nth-child(2), 
    .footer-col:nth-child(3) {
        flex: 0 0 50%; 
        padding-right: 10px;
    }

    /* 3. Get In Touch (Centered & Attractive) */
    .contact-col {
        flex: 0 0 100%;
        text-align: center;
        background: rgba(255, 255, 255, 0.03); /* Light background for highlight */
        padding: 25px 15px;
        border-radius: 15px;
        border: 1px dashed rgba(59, 130, 246, 0.3); /* Attractive border */
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%); /* Underline ko center karne ke liye */
    }

    .contact-info li {
        flex-direction: column; /* Icon upar, text niche */
        align-items: center;
        gap: 8px;
        margin-bottom: 25px;
    }

    .contact-info li:last-child {
        margin-bottom: 0;
    }

    .contact-info i {
        font-size: 1.5rem; /* Icon thoda bada aur prominent */
        margin-bottom: 5px;
    }

    /* Bottom Bar Fixes */
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-legal a {
        margin: 0;
    }
}

/* ============================================
     ABOUT PAGE STYLES - FIXED ALIGNMENT
   ============================================ */

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    text-align: center;
}

/* About Image Wrapper */
.about-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* About Feature */
.about-feature {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-feature:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

/* Stats Section */
.stats-section {
    background: #0f172a;
}

.stat-card {
    padding: 20px;
    background: transparent;
    transition: all 0.3s ease;
}

.stat-card h2 {
    font-size: 42px;
    margin-bottom: 5px;
}

.stat-card p {
    color: #94a3b8;
    font-size: 14px;
}

/* Expertise Card */
.expertise-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.expertise-icon i {
    font-size: 32px;
    color: #ff6600;
}

.expertise-card:hover .expertise-icon {
    background: #ff6600;
    transform: scale(0.95);
}

.expertise-card:hover .expertise-icon i {
    color: white;
}

/* Timeline Styles - Fixed */
.timeline-wrapper {
    position: relative;
    padding: 20px 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #ff6600;
    border-radius: 3px;
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 22px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: #ff6600;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Why Choose Items */
.why-item {
    display: flex;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.why-item:last-child {
    border-bottom: none;
}

.why-item i {
    font-size: 28px;
    flex-shrink: 0;
}

.why-item:hover {
    transform: translateX(8px);
    padding-left: 5px;
}

.why-item h6 {
    margin-bottom: 5px;
    font-size: 16px;
}

.why-item p {
    margin-bottom: 0;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6600 0%, #e65c00 100%);
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .page-banner {
        padding: 40px 0;
    }
    
    .page-banner h1 {
        font-size: 28px;
    }
    
    .stat-card h2 {
        font-size: 32px;
    }
    
    .timeline-wrapper::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 55px;
    }
    
    .timeline-dot {
        left: 12px;
        width: 16px;
        height: 16px;
    }
    
    .timeline-content {
        padding: 15px 20px;
    }
    
    .timeline-content h5 {
        font-size: 14px;
    }
    
    .timeline-content h6 {
        font-size: 16px;
    }
    
    .why-item {
        gap: 12px;
    }
    
    .why-item i {
        font-size: 24px;
    }
    
    .expertise-card {
        padding: 25px 20px;
    }
    
    .expertise-icon {
        width: 60px;
        height: 60px;
    }
    
    .expertise-icon i {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .about-feature {
        font-size: 12px;
        padding: 10px 12px;
    }
    
    .stat-card h2 {
        font-size: 28px;
    }
    
    .stat-card p {
        font-size: 12px;
    }
}

/* ============================================
     NSPRO CUSTOM FAQ STYLES
   ============================================ */

.nspro-faq-section {
    position: relative;
    z-index: 1;
}

.nspro-faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
}

.nspro-faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.nspro-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: white;
    text-decoration: none !important;
}

.nspro-faq-question h5 {
    font-size: 17px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    flex: 1;
}

.nspro-faq-question i {
    font-size: 18px;
    color: var(--orange-color);
    transition: transform 0.4s ease;
}

/* Jab FAQ khula ho tab icon rotate kare aur background change ho */
.nspro-faq-question:not(.collapsed) {
    background: #fffaf5; /* Very light orange tint */
}

.nspro-faq-question:not(.collapsed) i {
    transform: rotate(180deg);
}

.nspro-faq-answer-wrapper {
    padding: 0 25px 20px 25px;
    background: #fffaf5;
}

.nspro-faq-answer-content {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    border-top: 1px dashed rgba(255, 102, 0, 0.1);
    padding-top: 15px;
}

@media (max-width: 768px) {
    .nspro-faq-question { padding: 15px; }
    .nspro-faq-question h5 { font-size: 15px; }
    .nspro-faq-answer-wrapper { padding: 0 15px 15px 15px; }
}

/* ============================================
    SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS
     -- -- --TESTIMONIALS SECTION STYLES-- -- -
     SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS
   ============================================ */

/* ============================================
     PROFESSIONAL TESTIMONIAL SLIDER
   ============================================ */

.professional-testimonials {
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.testimonial-header {
    margin-bottom: 50px;
}

.testimonial-badge {
    display: inline-block;
    background: rgba(255, 102, 0, 0.1);
    color: var(--orange-color);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.testimonial-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.title-divider span {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-color), transparent);
}

.title-divider i {
    color: var(--orange-color);
    font-size: 14px;
}

.testimonial-subtitle {
    color: #64748b;
    font-size: 16px;
    max-width: 550px;
    margin: 0 auto;
}

/* Google Rating Card */
.google-rating-card {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.rating-content {
    background: white;
    padding: 12px 28px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.rating-stars i {
    color: #ffc107;
    font-size: 14px;
    margin: 0 1px;
}

.rating-score {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.score {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
}

.out-of {
    font-size: 12px;
    color: #94a3b8;
}

.rating-source {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 13px;
}

.rating-source i {
    color: #4285f4;
    font-size: 16px;
}

/* Slider Main */
.testimonial-slider-main {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.slider-frame {
    overflow: hidden;
    border-radius: 24px;
}

.slides-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pro-slide {
    flex: 0 0 100%;
}

/* Testimonial Card */
.testimonial-card-pro {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.card-inner {
    padding: 50px 55px;
    position: relative;
}

.quote-mark-pro {
    position: absolute;
    top: 30px;
    right: 35px;
    opacity: 0.08;
}

.quote-mark-pro svg {
    width: 70px;
    height: 70px;
    color: var(--orange-color);
}

.rating-pro {
    margin-bottom: 20px;
}

.rating-pro i {
    color: #ffc107;
    font-size: 18px;
    margin-right: 4px;
}

.testimonial-text-pro {
    font-size: 18px;
    line-height: 1.7;
    color: #1e293b;
    margin-bottom: 30px;
    font-style: normal;
}

/* Author Section */
.author-section {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.author-avatar-pro {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--orange-color);
    padding: 2px;
}

.author-avatar-pro img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.author-info-pro h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-icon {
    color: #3b82f6;
    font-size: 14px;
}

.author-meta-pro {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
}

.author-meta-pro i {
    font-size: 12px;
}

.dot-sep {
    color: #cbd5e1;
}

.helpful-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: #f8fafc;
    border-radius: 50px;
    font-size: 12px;
    color: #64748b;
}

.helpful-count i {
    color: #ef4444;
    font-size: 12px;
}

/* Navigation Buttons */
.pro-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.pro-nav:hover {
    background: var(--orange-color);
    border-color: var(--orange-color);
    transform: translateY(-50%) scale(1.05);
}

.pro-nav:hover i {
    color: white;
}

.pro-nav i {
    font-size: 24px;
    color: var(--orange-color);
    transition: all 0.3s ease;
}

.pro-prev {
    left: -60px;
}

.pro-next {
    right: -60px;
}

/* Progress Indicators */
.slider-progress {
    max-width: 300px;
    margin: 35px auto 0;
}

.progress-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.indicator {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    width: 28px;
    background: var(--orange-color);
    border-radius: 20px;
}

.progress-bar-line {
    height: 3px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill-line {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--orange-color), #ff9944);
    border-radius: 10px;
    transition: width 5s linear;
}

/* View All Link */
.view-all-wrapper {
    text-align: center;
    margin-top: 40px;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange-color);
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: rgba(255, 102, 0, 0.05);
}

.view-all-link:hover {
    background: var(--orange-color);
    color: white;
    gap: 15px;
}

.view-all-link i {
    font-size: 14px;
}

.view-all-link .arrow-icon {
    transition: transform 0.3s ease;
}

.view-all-link:hover .arrow-icon {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-title {
        font-size: 30px;
    }
    
    .card-inner {
        padding: 40px 35px;
    }
    
    .testimonial-text-pro {
        font-size: 16px;
    }
    
    .pro-prev {
        left: -30px;
    }
    
    .pro-next {
        right: -30px;
    }
}

@media (max-width: 768px) {
    .professional-testimonials {
        padding: 60px 0;
    }
    
    .testimonial-title {
        font-size: 26px;
    }
    
    .rating-content {
        padding: 8px 20px;
        gap: 12px;
    }
    
    .score {
        font-size: 18px;
    }
    
    .card-inner {
        padding: 35px 25px;
    }
    
    .testimonial-text-pro {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .author-section {
        gap: 12px;
    }
    
    .author-avatar-pro {
        width: 50px;
        height: 50px;
    }
    
    .author-info-pro h4 {
        font-size: 15px;
    }
    
    .author-meta-pro {
        font-size: 10px;
        flex-wrap: wrap;
    }
    
    .pro-nav {
        display: none;
    }
    
    .helpful-count {
        font-size: 10px;
    }
}

/* ============================================
     TESTIMONIALS PAGE STYLES
   ============================================ */

/* Rating Summary */
.rating-badge {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Rating Breakdown */
.rating-breakdown {
    max-width: 400px;
    margin: 0 auto;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.stars-label {
    width: 60px;
    font-size: 14px;
}

.progress-bar-custom {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #ffc107;
    border-radius: 10px;
}

.percentage {
    width: 45px;
    font-size: 13px;
    color: #64748b;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--orange-color);
    border-color: var(--orange-color);
    color: white;
}

/* Review Cards */
.review-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.review-card.featured {
    border-left: 4px solid var(--orange-color);
}

.review-card.latest {
    background: linear-gradient(135deg, #fff 0%, #fff7ed 100%);
}

.review-card.compact {
    padding: 15px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    gap: 12px;
}

.reviewer-avatar,
.reviewer-avatar-sm {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.reviewer-avatar-sm {
    width: 36px;
    height: 36px;
    font-size: 14px;
}

.reviewer-avatar.bg-primary { background: #3b82f6; }
.reviewer-avatar.bg-info { background: #06b6d4; }
.reviewer-avatar.bg-warning { background: #f59e0b; }
.reviewer-avatar.bg-success { background: #10b981; }
.reviewer-avatar.bg-pink { background: #ec4899; }
.reviewer-avatar.bg-secondary { background: #64748b; }

.review-meta {
    font-size: 11px;
    color: #64748b;
}

.review-meta i {
    font-size: 10px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 15px;
}

.review-footer {
    font-size: 12px;
    color: #64748b;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.compact-header {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .filter-buttons {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }
    
    .review-text {
        font-size: 13px;
    }
}

/* ============================================
    SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS
    -- -- -- -- CONTACT PAGE STYLES -- -- -- --
    SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS
   ============================================ */

/* Contact Banner */
.contact-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    text-align: center;
}

/* Contact Info Cards */
.contact-info-section {
    margin-top: -40px;
}

.contact-info-card {
    background: white;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 32px;
    color: var(--orange-color);
}

.contact-info-card:hover .card-icon {
    background: var(--orange-color);
}

.contact-info-card:hover .card-icon i {
    color: white;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-link {
    display: inline-block;
    color: var(--orange-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--orange-hover);
}

.contact-link-small {
    display: block;
    color: #1e293b;
    text-decoration: none;
    font-size: 14px;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.contact-link-small:hover {
    color: var(--orange-color);
}

.contact-address {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
}

/* Form Section */
.form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-badge {
    display: inline-block;
    background: rgba(255, 102, 0, 0.1);
    color: var(--orange-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.form-group {
    position: relative;
    margin-bottom: 5px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 8px;
    display: block;
}

.form-control, .form-select {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus, .form-select:focus {
    border-color: var(--orange-color);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
    outline: none;
}

.form-icon {
    position: absolute;
    left: 15px;
    bottom: 14px;
    color: #94a3b8;
    font-size: 16px;
}

textarea.form-control {
    padding-top: 12px;
    resize: vertical;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background: var(--orange-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover .btn-overlay {
    left: 100%;
}

.form-note {
    font-size: 12px;
    color: #64748b;
    text-align: center;
    margin-top: 15px;
}

.form-note i {
    color: #10b981;
}

/* Map Card */
.map-wrapper {
    height: 100%;
}

.map-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.map-header {
    padding: 20px 25px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-header i {
    font-size: 24px;
}

.map-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.map-container iframe {
    width: 100%;
    height: 280px;
}

/* Office Hours */
.office-hours {
    padding: 25px;
    border-bottom: 1px solid #f1f5f9;
}

.office-hours h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.office-hours h4 i {
    color: var(--orange-color);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #64748b;
}

.hours-list li strong {
    color: #1e293b;
}

/* Emergency Contact */
.emergency-contact {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #fff7ed, #fff);
}

.emergency-icon {
    width: 50px;
    height: 50px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-icon i {
    font-size: 24px;
    color: #ef4444;
}

.emergency-text p {
    margin: 0;
    font-size: 12px;
    color: #64748b;
}

.emergency-text a {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #ef4444;
    text-decoration: none;
}

.emergency-text small {
    font-size: 10px;
    color: #94a3b8;
}

/* Social Connect */
.social-connect {
    background: white;
}

.social-icons-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    font-size: 24px;
    text-decoration: none;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.05);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* FAQ Mini */
.faq-mini {
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.faq-mini-item {
    border-bottom: 1px solid #f1f5f9;
}

.faq-mini-item:last-child {
    border-bottom: none;
}

.faq-question-mini {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question-mini:hover {
    background: #f8fafc;
}

.faq-answer-mini {
    padding: 0 20px 15px 52px;
    font-size: 14px;
    color: #64748b;
    display: none;
}

.faq-mini-item.active .faq-answer-mini {
    display: block;
}

/* Toggle FAQ Mini */
.faq-question-mini i:first-child {
    transition: transform 0.3s ease;
}

.faq-mini-item.active .faq-question-mini i:first-child {
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-info-section {
        margin-top: 0;
        padding-top: 40px;
    }
    
    .form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-banner h1 {
        font-size: 28px;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .form-wrapper {
        padding: 25px;
    }
    
    .contact-link {
        font-size: 16px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .emergency-contact {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-text a {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .form-group .form-control,
    .form-group .form-select {
        font-size: 13px;
        padding: 10px 12px 10px 38px;
    }
    
    .form-icon {
        bottom: 12px;
        font-size: 14px;
    }
    
    .btn-submit {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hours-list li {
        font-size: 12px;
        flex-direction: column;
        gap: 5px;
    }
}

/* ============================================
     SERVICES PAGE STYLES
   ============================================ */

/* Banner */
.services-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    text-align: center;
}

/* Main Service Cards */
.main-services {
    background: white;
}

.service-card-main {
    background: white;
    padding: 35px 25px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card-main.featured {
    border: 2px solid var(--orange-color);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--orange-color);
    color: white;
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon-lg {
    width: 70px;
    height: 70px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-icon-lg i {
    font-size: 34px;
    color: var(--orange-color);
}

.service-card-main:hover .service-icon-lg {
    background: var(--orange-color);
}

.service-card-main:hover .service-icon-lg i {
    color: white;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-description {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.service-features span {
    background: #f8fafc;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-features i {
    color: #10b981;
    font-size: 11px;
}

.service-price {
    padding: 15px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 20px;
}

.price-label {
    font-size: 12px;
    color: #64748b;
    display: block;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--orange-color);
}

.price-unit {
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-btn:hover {
    gap: 12px;
    color: var(--orange-hover);
}

/* Why Cards */
.why-card-services {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.why-card-services:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.why-icon i {
    font-size: 28px;
    color: var(--orange-color);
}

.why-card-services h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card-services p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Process Steps */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    /* gap: 20px; */
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--orange-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 10px;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.step-icon i {
    font-size: 36px;
    color: var(--orange-color);
}

.step-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-item p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.step-arrow i {
    font-size: 24px;
    color: #cbd5e1;
}

/* Portfolio Items */
.portfolio-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    width: 45px;
    height: 45px;
    background: var(--orange-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    transform: scale(1.1);
    background: white;
    color: var(--orange-color);
}

.portfolio-info {
    padding: 15px;
}

.portfolio-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.portfolio-info p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

/* Custom Package Card */
.custom-package-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 40px;
    border-radius: 24px;
}

.btn-orange-light {
    background: white;
    color: var(--orange-color);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-orange-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: var(--orange-hover);
}

/* Services Accordion */
.services-accordion {
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.accordion-item-service {
    border-bottom: 1px solid #f1f5f9;
}

.accordion-item-service:last-child {
    border-bottom: none;
}

.accordion-question {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-question:hover {
    background: #f8fafc;
}

.accordion-question span {
    flex: 1;
    font-weight: 500;
}

.accordion-arrow {
    transition: transform 0.3s ease;
}

.accordion-item-service.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-answer {
    padding: 0 22px 0 54px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item-service.active .accordion-answer {
    padding: 0 22px 18px 54px;
    max-height: 200px;
}

.accordion-answer p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* CTA Services */
.cta-services {
    background: linear-gradient(135deg, var(--orange-color), var(--orange-hover));
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: rgba(255, 102, 0, 0.1);
    color: var(--orange-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .step-item {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .service-card-main {
        padding: 25px 20px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .price {
        font-size: 24px;
    }
    
    .custom-package-card {
        padding: 30px 25px;
        text-align: center;
    }
    
    .accordion-question {
        padding: 14px 18px;
        font-size: 14px;
    }
    
    .accordion-answer {
        font-size: 13px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 28px;
    }
}

/* ============================================
     APP DEVELOPMENT PAGE STYLES
   ============================================ */

/* Banner */
.app-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.app-badge {
    display: inline-block;
    background: rgba(255, 102, 0, 0.1);
    color: var(--orange-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.app-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--orange-color);
}

.stat-label {
    font-size: 13px;
    color: #64748b;
}

/* Platforms Section */
.platforms-section {
    background: white;
}

.platform-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.platform-card i {
    font-size: 48px;
    color: var(--orange-color);
    margin-bottom: 15px;
}

.platform-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.platform-card p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* App Service Cards */
.app-service-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.app-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon-app {
    width: 60px;
    height: 60px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-app i {
    font-size: 28px;
    color: var(--orange-color);
}

.app-service-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.app-service-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-points li {
    font-size: 13px;
    color: #1e293b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-points i {
    color: #10b981;
    font-size: 12px;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item-app {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 22px;
    color: var(--orange-color);
}

.feature-item-app h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-item-app p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Tech Stack */
.tech-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.tech-card i {
    font-size: 36px;
    color: var(--orange-color);
    display: block;
    margin-bottom: 10px;
}

.tech-card span {
    font-size: 13px;
    font-weight: 500;
}

.tech-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-step-app {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.process-step-app:last-child {
    margin-bottom: 0;
}

.step-number-app {
    width: 50px;
    height: 50px;
    background: var(--orange-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.pricing-card.featured {
    border: 2px solid var(--orange-color);
    transform: scale(1.02);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-color);
    color: white;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.price-tag {
    margin-bottom: 15px;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--orange-color);
}

.amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--orange-color);
}

.period {
    font-size: 14px;
    color: #64748b;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: #10b981;
    font-size: 16px;
}

/* FAQ Accordion */
.faq-accordion {
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.faq-item-app {
    border-bottom: 1px solid #f1f5f9;
}

.faq-item-app:last-child {
    border-bottom: none;
}

.faq-question-app {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question-app:hover {
    background: #f8fafc;
}

.faq-question-app i {
    transition: transform 0.3s ease;
    color: var(--orange-color);
}

.faq-item-app.active .faq-question-app i {
    transform: rotate(180deg);
}

.faq-answer-app {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-app.active .faq-answer-app {
    padding: 0 22px 18px 22px;
    max-height: 200px;
}

.faq-answer-app p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 992px) {
    .app-banner {
        padding: 60px 0;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .app-banner h1 {
        font-size: 32px;
    }
    
    .app-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .platform-card {
        padding: 20px;
    }
    
    .process-step-app {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number-app {
        margin: 0 auto;
    }
    
    .contact-form-card {
        padding: 25px;
    }
}

/* ============================================
    SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS
    -- -- SEO OPTIMIZATION PAGE STYLES-- -- --
    SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS
   ============================================ */

/* SEO Banner */
.seo-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.seo-badge {
    display: inline-block;
    background: rgba(255, 102, 0, 0.1);
    color: var(--orange-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.seo-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.seo-stats .stat {
    text-align: left;
}

.seo-stats .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--orange-color);
}

.seo-stats .stat-label {
    font-size: 13px;
    color: #64748b;
}

/* SEO Service Cards */
.seo-service-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.seo-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.seo-service-card .service-icon-seo {
    width: 60px;
    height: 60px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.seo-service-card .service-icon-seo i {
    font-size: 28px;
    color: var(--orange-color);
}

.seo-service-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.seo-service-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.seo-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-service-card ul li {
    font-size: 13px;
    color: #1e293b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.seo-service-card ul li i {
    color: #10b981;
    font-size: 12px;
}

/* SEO Process */
.seo-process {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 15px;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--orange-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* SEO Packages */
.package-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.package-card.featured {
    border: 2px solid var(--orange-color);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-color);
    color: white;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.package-header h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.price {
    margin-bottom: 15px;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--orange-color);
}

.amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--orange-color);
}

.period {
    font-size: 14px;
    color: #64748b;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.package-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features i {
    color: #10b981;
    font-size: 16px;
}

/* Trust Points */
.trust-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trust-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.trust-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--orange-color);
    flex-shrink: 0;
}

.trust-item h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.trust-item p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* SEO Results Card */
.seo-results-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.seo-results-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.result-item {
    margin-bottom: 20px;
}

.result-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.progress-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange-color), #ff9944);
    border-radius: 10px;
}

.result-value {
    float: right;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange-color);
}

/* Tools Card */
.tool-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.tool-card i {
    font-size: 32px;
    color: var(--orange-color);
    display: block;
    margin-bottom: 10px;
}

.tool-card span {
    font-size: 12px;
    font-weight: 500;
}

.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* SEO FAQ Accordion */
.faq-accordion-seo {
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.faq-item-seo {
    border-bottom: 1px solid #f1f5f9;
}

.faq-item-seo:last-child {
    border-bottom: none;
}

.faq-question-seo {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question-seo:hover {
    background: #f8fafc;
}

.faq-question-seo i {
    transition: transform 0.3s ease;
    color: var(--orange-color);
}

.faq-item-seo.active .faq-question-seo i {
    transform: rotate(180deg);
}

.faq-answer-seo {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-seo.active .faq-answer-seo {
    padding: 0 22px 18px 22px;
    max-height: 200px;
}

.faq-answer-seo p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* SEO Audit Card */
.audit-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 40px;
    border-radius: 24px;
}

.audit-benefits {
    margin-top: 20px;
}

.benefit {
    color: white;
    margin-bottom: 10px;
    font-size: 14px;
}

.benefit i {
    color: #10b981;
    margin-right: 8px;
}

.audit-form {
    background: white;
    padding: 30px;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .seo-banner {
        padding: 60px 0;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .seo-banner h1 {
        font-size: 32px;
    }
    
    .seo-stats {
        gap: 20px;
    }
    
    .seo-stats .stat-number {
        font-size: 22px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .audit-card {
        padding: 25px;
    }
    
    .audit-form {
        padding: 20px;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .seo-stats {
        /*flex-direction: column;*/
        gap: 10px;
    }
    
    .benefit {
        font-size: 12px;
    }
}

/* ============================================
    SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS
    -- -- -- WEB DEVELOPMENT PAGE STYLES -- --
    SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS
   ============================================ */

/* Web Banner */
.web-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px 0;
}

.web-badge {
    display: inline-block;
    background: rgba(255, 102, 0, 0.1);
    color: var(--orange-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.web-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.web-stats .stat {
    text-align: left;
}

.web-stats .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--orange-color);
}

.web-stats .stat-label {
    font-size: 13px;
    color: #64748b;
}

/* Tech Stack */
.tech-card-web {
    background: white;
    padding: 20px 15px;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.tech-card-web i {
    font-size: 32px;
    color: var(--orange-color);
    display: block;
    margin-bottom: 10px;
}

.tech-card-web span {
    font-size: 12px;
    font-weight: 500;
}

.tech-card-web:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Web Service Cards */
.web-service-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.web-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon-web {
    width: 60px;
    height: 60px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-web i {
    font-size: 28px;
    color: var(--orange-color);
}

.web-service-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.web-service-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.web-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.web-service-card ul li {
    font-size: 13px;
    color: #1e293b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.web-service-card ul li i {
    color: #10b981;
    font-size: 12px;
}

/* Why Choose Points */
.why-web-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-point {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.why-point i {
    width: 45px;
    height: 45px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--orange-color);
    flex-shrink: 0;
}

.why-point h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.why-point p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Features Grid */
.web-features-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item-web {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item-web:hover {
    background: var(--orange-color);
    color: white;
    transform: translateY(-3px);
}

.feature-item-web i {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

.feature-item-web span {
    font-size: 14px;
    font-weight: 600;
}

.feature-item-web:hover i,
.feature-item-web:hover span {
    color: white;
}

/* Process Steps */
.process-web-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.step-web {
    text-align: center;
    width: 150px;
}

.step-number-web {
    width: 35px;
    height: 35px;
    background: var(--orange-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 10px;
}

.step-icon-web {
    width: 70px;
    height: 70px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.step-icon-web i {
    font-size: 32px;
    color: var(--orange-color);
}

.step-web h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-web p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.step-arrow-web i {
    font-size: 24px;
    color: #cbd5e1;
}

/* Portfolio Items */
.portfolio-web-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.portfolio-web-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-image-web {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.portfolio-image-web img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-web-item:hover .portfolio-image-web img {
    transform: scale(1.05);
}

.portfolio-overlay-web {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-web-item:hover .portfolio-overlay-web {
    opacity: 1;
}

.portfolio-link-web {
    width: 45px;
    height: 45px;
    background: var(--orange-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-link-web:hover {
    transform: scale(1.1);
    background: white;
    color: var(--orange-color);
}

.portfolio-info-web {
    padding: 15px;
    text-align: center;
}

.portfolio-info-web h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.portfolio-info-web p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

/* Pricing Packages */
.package-web-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.package-web-card.featured {
    border: 2px solid var(--orange-color);
    transform: scale(1.02);
}

.popular-tag-web {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-color);
    color: white;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.package-header-web h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.price-web {
    margin-bottom: 15px;
}

.price-web .currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--orange-color);
}

.price-web .amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--orange-color);
}

.price-web .period {
    font-size: 14px;
    color: #64748b;
}

.package-features-web {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.package-features-web li {
    padding: 8px 0;
    font-size: 14px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features-web i {
    color: #10b981;
    font-size: 16px;
}

/* FAQ Accordion */
.faq-accordion-web {
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.faq-item-web {
    border-bottom: 1px solid #f1f5f9;
}

.faq-item-web:last-child {
    border-bottom: none;
}

.faq-question-web {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question-web:hover {
    background: #f8fafc;
}

.faq-question-web i {
    transition: transform 0.3s ease;
    color: var(--orange-color);
}

.faq-item-web.active .faq-question-web i {
    transform: rotate(180deg);
}

.faq-answer-web {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-web.active .faq-answer-web {
    padding: 0 22px 18px 22px;
    max-height: 200px;
}

.faq-answer-web p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Contact Card */
.web-contact-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 40px;
    border-radius: 24px;
}

.contact-benefits {
    margin-top: 20px;
}

.benefit-web {
    color: white;
    margin-bottom: 10px;
    font-size: 14px;
}

.benefit-web i {
    color: #10b981;
    margin-right: 8px;
}

.web-contact-form {
    background: white;
    padding: 30px;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .web-banner {
        padding: 60px 0;
    }
    
    .package-web-card.featured {
        transform: scale(1);
    }
    
    .process-web-steps {
        flex-direction: column;
    }
    
    .step-arrow-web {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .web-banner h1 {
        font-size: 32px;
    }
    
    .web-stats {
        gap: 20px;
    }
    
    .web-stats .stat-number {
        font-size: 22px;
    }
    
    .step-web {
        width: 100%;
        max-width: 250px;
    }
    
    .web-contact-card {
        padding: 25px;
    }
    
    .web-contact-form {
        padding: 20px;
        margin-top: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-item-web {
        padding: 15px;
    }
    
    .feature-item-web i {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .web-stats {
        /*flex-direction: column;*/
        gap: 10px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
     DIGITAL MARKETING PAGE STYLES
   ============================================ */

/* DM Banner */
.dm-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.dm-badge {
    display: inline-block;
    background: rgba(255, 102, 0, 0.1);
    color: var(--orange-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.dm-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.dm-stats .stat {
    text-align: left;
}

.dm-stats .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--orange-color);
}

.dm-stats .stat-label {
    font-size: 13px;
    color: #64748b;
}

/* DM Service Cards */
.dm-service-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.dm-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon-dm {
    width: 60px;
    height: 60px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-dm i {
    font-size: 28px;
    color: var(--orange-color);
}

.dm-service-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.dm-service-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.dm-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dm-service-card ul li {
    font-size: 13px;
    color: #1e293b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dm-service-card ul li i {
    color: #10b981;
    font-size: 12px;
}

/* Importance Points */
.importance-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.importance-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.importance-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--orange-color);
    flex-shrink: 0;
}

.importance-item h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.importance-item p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* DM Results Card */
.dm-results-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dm-results-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.result-item-dm {
    margin-bottom: 20px;
}

.result-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.result-value-dm {
    color: var(--orange-color);
    font-weight: 700;
}

.progress-bar-dm {
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill-dm {
    height: 100%;
    background: linear-gradient(90deg, var(--orange-color), #ff9944);
    border-radius: 10px;
}

/* DM Process Steps */
.dm-process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.dm-step {
    text-align: center;
    width: 160px;
}

.dm-step-number {
    width: 35px;
    height: 35px;
    background: var(--orange-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 10px;
}

.dm-step-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.dm-step-icon i {
    font-size: 32px;
    color: var(--orange-color);
}

.dm-step h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.dm-step p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.dm-step-arrow i {
    font-size: 24px;
    color: #cbd5e1;
}

/* DM Packages */
.dm-package-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.dm-package-card.featured {
    border: 2px solid var(--orange-color);
    transform: scale(1.02);
}

.popular-tag-dm {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-color);
    color: white;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.dm-package-header h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.dm-price {
    margin-bottom: 15px;
}

.dm-price .currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--orange-color);
}

.dm-price .amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--orange-color);
}

.dm-price .period {
    font-size: 14px;
    color: #64748b;
}

.dm-package-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.dm-package-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dm-package-features i {
    color: #10b981;
    font-size: 16px;
}

/* Platform Cards */
.platform-card-dm {
    background: white;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.platform-card-dm i {
    font-size: 32px;
    color: var(--orange-color);
    display: block;
    margin-bottom: 10px;
}

.platform-card-dm span {
    font-size: 13px;
    font-weight: 500;
}

.platform-card-dm:hover {
    transform: translateY(-3px);
    background: var(--orange-color);
}

.platform-card-dm:hover i,
.platform-card-dm:hover span {
    color: white;
}

/* DM FAQ Accordion */
.faq-accordion-dm {
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.faq-item-dm {
    border-bottom: 1px solid #f1f5f9;
}

.faq-item-dm:last-child {
    border-bottom: none;
}

.faq-question-dm {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question-dm:hover {
    background: #f8fafc;
}

.faq-question-dm i {
    transition: transform 0.3s ease;
    color: var(--orange-color);
}

.faq-item-dm.active .faq-question-dm i {
    transform: rotate(180deg);
}

.faq-answer-dm {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-dm.active .faq-answer-dm {
    padding: 0 22px 18px 22px;
    max-height: 200px;
}

.faq-answer-dm p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Consultation Card */
.consultation-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 40px;
    border-radius: 24px;
}

.consultation-benefits {
    margin-top: 20px;
}

.benefit-dm {
    color: white;
    margin-bottom: 10px;
    font-size: 14px;
}

.benefit-dm i {
    color: #10b981;
    margin-right: 8px;
}

.consultation-form {
    background: white;
    padding: 30px;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .dm-banner {
        padding: 60px 0;
    }
    
    .dm-package-card.featured {
        transform: scale(1);
    }
    
    .dm-process-steps {
        flex-direction: column;
    }
    
    .dm-step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .dm-banner h1 {
        font-size: 32px;
    }
    
    .dm-stats {
        gap: 20px;
    }
    
    .dm-stats .stat-number {
        font-size: 22px;
    }
    
    .dm-step {
        width: 100%;
        max-width: 250px;
    }
    
    .consultation-card {
        padding: 25px;
    }
    
    .consultation-form {
        padding: 20px;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .dm-stats {
        /*flex-direction: column;*/
        gap: 10px;
    }
    
    .dm-service-card ul li {
        font-size: 12px;
    }
}

/* ============================================
     E-COMMERCE PAGE STYLES
   ============================================ */

/* E-commerce Banner */
.ecom-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.ecom-badge {
    display: inline-block;
    background: rgba(255, 102, 0, 0.1);
    color: var(--orange-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.ecom-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.ecom-stats .stat {
    text-align: left;
}

.ecom-stats .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--orange-color);
}

.ecom-stats .stat-label {
    font-size: 13px;
    color: #64748b;
}

/* Platform Cards */
.ecom-platform-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.ecom-platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ecom-platform-card i {
    font-size: 48px;
    color: var(--orange-color);
    margin-bottom: 15px;
}

.ecom-platform-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ecom-platform-card p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Feature Cards */
.ecom-feature-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.ecom-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ecom-feature-card i {
    font-size: 36px;
    color: var(--orange-color);
    margin-bottom: 15px;
}

.ecom-feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ecom-feature-card p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Why Choose Points */
.why-ecom-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-ecom-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.why-ecom-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--orange-color);
    flex-shrink: 0;
}

.why-ecom-item h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.why-ecom-item p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Success Stories */
.ecom-success-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ecom-success-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.success-story {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
}

.success-story:last-child {
    border-bottom: none;
}

.story-icon i {
    font-size: 28px;
    color: var(--orange-color);
}

.story-content h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.story-content p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 5px;
}

.story-meta {
    font-size: 12px;
    color: #94a3b8;
}

/* Process Steps */
.ecom-process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.ecom-step {
    text-align: center;
    width: 150px;
}

.step-num {
    width: 35px;
    height: 35px;
    background: var(--orange-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 10px;
}

.step-icon-ecom {
    width: 70px;
    height: 70px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.step-icon-ecom i {
    font-size: 32px;
    color: var(--orange-color);
}

.ecom-step h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ecom-step p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.step-arrow-ecom i {
    font-size: 24px;
    color: #cbd5e1;
}

/* Package Cards */
.ecom-package-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.ecom-package-card.featured {
    border: 2px solid var(--orange-color);
    transform: scale(1.02);
}

.popular-tag-ecom {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-color);
    color: white;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.ecom-package-header h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ecom-price {
    margin-bottom: 15px;
}

.ecom-price .currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--orange-color);
}

.ecom-price .amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--orange-color);
}

.ecom-price .period {
    font-size: 14px;
    color: #64748b;
}

.ecom-package-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.ecom-package-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ecom-package-features i {
    color: #10b981;
    font-size: 16px;
}

/* Payment Grid */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
}

.payment-item i {
    color: var(--orange-color);
    font-size: 20px;
}

/* FAQ Accordion */
.faq-accordion-ecom {
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.faq-item-ecom {
    border-bottom: 1px solid #f1f5f9;
}

.faq-item-ecom:last-child {
    border-bottom: none;
}

.faq-question-ecom {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question-ecom:hover {
    background: #f8fafc;
}

.faq-question-ecom i {
    transition: transform 0.3s ease;
    color: var(--orange-color);
}

.faq-item-ecom.active .faq-question-ecom i {
    transform: rotate(180deg);
}

.faq-answer-ecom {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-ecom.active .faq-answer-ecom {
    padding: 0 22px 18px 22px;
    max-height: 200px;
}

.faq-answer-ecom p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Contact Card */
.ecom-contact-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 40px;
    border-radius: 24px;
}

.contact-benefits-ecom {
    margin-top: 20px;
}

.benefit-ecom {
    color: white;
    margin-bottom: 10px;
    font-size: 14px;
}

.benefit-ecom i {
    color: #10b981;
    margin-right: 8px;
}

.ecom-contact-form {
    background: white;
    padding: 30px;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .ecom-banner {
        padding: 60px 0;
    }
    
    .ecom-package-card.featured {
        transform: scale(1);
    }
    
    .ecom-process-steps {
        flex-direction: column;
    }
    
    .step-arrow-ecom {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .ecom-banner h1 {
        font-size: 32px;
    }
    
    .ecom-stats {
        gap: 20px;
    }
    
    .ecom-stats .stat-number {
        font-size: 22px;
    }
    
    .ecom-step {
        width: 100%;
        max-width: 250px;
    }
    
    .ecom-contact-card {
        padding: 25px;
    }
    
    .ecom-contact-form {
        padding: 20px;
        margin-top: 20px;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .ecom-stats {
        /*flex-direction: column;*/
        gap: 10px;
    }
}

/* ============================================
     WEBSITE MAINTENANCE PAGE STYLES
   ============================================ */

/* Maintenance Banner */
.maintenance-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.maint-badge {
    display: inline-block;
    background: rgba(255, 102, 0, 0.1);
    color: var(--orange-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.maint-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.maint-stats .stat {
    text-align: left;
}

.maint-stats .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--orange-color);
}

.maint-stats .stat-label {
    font-size: 13px;
    color: #64748b;
}

/* Service Cards */
.maint-service-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.maint-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon-maint {
    width: 60px;
    height: 60px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-maint i {
    font-size: 28px;
    color: var(--orange-color);
}

.maint-service-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.maint-service-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.maint-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.maint-service-card ul li {
    font-size: 13px;
    color: #1e293b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.maint-service-card ul li i {
    color: #10b981;
    font-size: 12px;
}

/* Why Maintenance Points */
.why-maint-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-maint-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.why-maint-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--orange-color);
    flex-shrink: 0;
}

.why-maint-item h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.why-maint-item p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Stats Card */
.maint-stats-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item-maint {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
}

.stat-number-maint {
    font-size: 36px;
    font-weight: 700;
    color: var(--orange-color);
    margin-bottom: 10px;
}

.stat-item-maint p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Included Services */
.included-card {
    background: white;
    padding: 25px 15px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.included-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.included-card i {
    font-size: 32px;
    color: var(--orange-color);
    display: block;
    margin-bottom: 10px;
}

.included-card span {
    font-size: 13px;
    font-weight: 500;
}

/* Process Steps */
.maint-process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.maint-step {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.step-circle {
    width: 40px;
    height: 40px;
    background: var(--orange-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-content-maint h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.step-content-maint p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.step-line {
    width: 30px;
    height: 2px;
    background: #e2e8f0;
}

/* Package Cards */
.maint-package-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.maint-package-card.featured {
    border: 2px solid var(--orange-color);
    transform: scale(1.02);
}

.popular-tag-maint {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-color);
    color: white;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.maint-package-header h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.maint-price {
    margin-bottom: 15px;
}

.maint-price .currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--orange-color);
}

.maint-price .amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--orange-color);
}

.maint-price .period {
    font-size: 14px;
    color: #64748b;
}

.maint-package-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.maint-package-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.maint-package-features i {
    color: #10b981;
    font-size: 16px;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.comparison-table th {
    background: #f8fafc;
    font-weight: 700;
}

.comparison-table td.highlight {
    background: rgba(255, 102, 0, 0.05);
}

.comparison-table .bi-check-lg {
    color: #10b981;
    font-size: 18px;
}

.comparison-table .bi-x-lg {
    color: #ef4444;
    font-size: 18px;
}

/* FAQ Accordion */
.faq-accordion-maint {
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.faq-item-maint {
    border-bottom: 1px solid #f1f5f9;
}

.faq-item-maint:last-child {
    border-bottom: none;
}

.faq-question-maint {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question-maint:hover {
    background: #f8fafc;
}

.faq-question-maint i {
    transition: transform 0.3s ease;
    color: var(--orange-color);
}

.faq-item-maint.active .faq-question-maint i {
    transform: rotate(180deg);
}

.faq-answer-maint {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-maint.active .faq-answer-maint {
    padding: 0 22px 18px 22px;
    max-height: 200px;
}

.faq-answer-maint p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Contact Card */
.maint-contact-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 40px;
    border-radius: 24px;
}

.contact-benefits-maint {
    margin-top: 20px;
}

.benefit-maint {
    color: white;
    margin-bottom: 10px;
    font-size: 14px;
}

.benefit-maint i {
    color: #10b981;
    margin-right: 8px;
}

.maint-contact-form {
    background: white;
    padding: 30px;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .maintenance-banner {
        padding: 60px 0;
    }
    
    .maint-package-card.featured {
        transform: scale(1);
    }
    
    .maint-process-steps {
        flex-direction: column;
    }
    
    .step-line {
        width: 2px;
        height: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .maintenance-banner h1 {
        font-size: 32px;
    }
    
    .maint-stats {
        gap: 20px;
    }
    
    .maint-stats .stat-number {
        font-size: 22px;
    }
    
    .maint-step {
        width: 100%;
    }
    
    .maint-contact-card {
        padding: 25px;
    }
    
    .maint-contact-form {
        padding: 20px;
        margin-top: 20px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .maint-stats {
        /*flex-direction: column;*/
        gap: 10px;
    }
    
    .included-card {
        padding: 15px;
    }
    
    .included-card i {
        font-size: 24px;
    }
    
    .included-card span {
        font-size: 11px;
    }
}



/* ============================================
     LEGAL PAGES (TERMS & CONDITIONS) STYLES
   ============================================ */

/* Legal Banner */
.legal-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    text-align: center;
}

/* Table of Contents Card */
.toc-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
    margin-bottom: 30px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 12px;
}

.toc-list a {
    color: #1e293b;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.toc-list a:hover {
    color: var(--orange-color);
    padding-left: 5px;
}

/* Legal Card */
.legal-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f5f9;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 15px;
}

.legal-section p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.legal-section ul li {
    color: #64748b;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.legal-section ul li::before {
    content: "•";
    color: var(--orange-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Payment Terms Boxes */
.payment-terms {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.term-box {
    flex: 1;
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
}

.term-box i {
    font-size: 32px;
    color: var(--orange-color);
    margin-bottom: 10px;
    display: block;
}

.term-box strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.term-box p {
    font-size: 12px;
    margin: 0;
}

/* Refund Policy */
.refund-policy {
    background: #fefce8;
    padding: 20px;
    border-radius: 16px;
    border-left: 3px solid var(--orange-color);
}

.refund-policy h5 {
    margin-bottom: 10px;
}

/* Contact Info Legal */
.contact-info-legal {
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
}

.contact-info-legal p {
    margin-bottom: 10px;
}

.contact-info-legal p:last-child {
    margin-bottom: 0;
}

/* Update Notice */
.update-notice {
    background: #eff6ff;
    padding: 25px;
    border-radius: 16px;
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.update-notice i {
    font-size: 24px;
    color: #3b82f6;
    flex-shrink: 0;
}

.update-notice strong {
    display: block;
    margin-bottom: 5px;
}

.update-notice p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

/* Acceptance Section */
.acceptance-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.acceptance-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.acceptance-card i {
    /* font-size: 48px; */
    color: var(--white-color);
}

.acceptance-card h3 {
    font-size: 24px;
}

/* Related Pages */
.related-pages {
    background: white;
}

.related-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #1e293b;
}

.related-link:hover {
    background: var(--orange-color);
    color: white;
    transform: translateY(-3px);
}

.related-link i:first-child {
    font-size: 24px;
}

.related-link span {
    font-weight: 500;
}

.related-link i:last-child {
    transition: transform 0.3s ease;
}

.related-link:hover i:last-child {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .toc-card {
        position: static;
        margin-bottom: 30px;
    }
    
    .legal-card {
        padding: 30px;
    }
    
    .payment-terms {
        flex-direction: column;
    }
    
    .term-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .legal-banner h1 {
        font-size: 32px;
    }
    
    .legal-card {
        padding: 25px;
    }
    
    .legal-section h3 {
        font-size: 20px;
    }
    
    .update-notice {
        flex-direction: column;
    }
    
    .acceptance-card {
        padding: 25px;
    }
    
    .acceptance-card h3 {
        font-size: 18px;
    }
    
    .related-link {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .legal-card {
        padding: 20px;
    }
    
    .legal-section h3 {
        font-size: 18px;
    }
    
    .legal-section p,
    .legal-section ul li {
        font-size: 13px;
    }
}


/* ============================================
     PRIVACY POLICY & LEGAL PAGES STYLES
   ============================================ */

/* Legal Banner */
.legal-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    text-align: center;
}

/* Table of Contents Card */
.toc-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
    margin-bottom: 30px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 12px;
}

.toc-list a {
    color: #1e293b;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.toc-list a:hover {
    color: var(--orange-color);
    padding-left: 5px;
}

/* Legal Card */
.legal-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f5f9;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 15px;
}

.legal-section p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.legal-section ul li {
    color: #64748b;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.legal-section ul li::before {
    content: "•";
    color: var(--orange-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Intro Text */
.intro-text {
    font-size: 16px;
    line-height: 1.8;
}

/* Info Box */
.info-box {
    background: #eff6ff;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.info-box i {
    font-size: 24px;
    color: #3b82f6;
    flex-shrink: 0;
}

.info-box strong {
    display: block;
    margin-bottom: 5px;
}

.info-box p {
    margin: 0;
    font-size: 14px;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.usage-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.usage-item:hover {
    transform: translateX(5px);
}

.usage-item i {
    font-size: 28px;
    color: var(--orange-color);
    flex-shrink: 0;
}

.usage-item strong {
    display: block;
    margin-bottom: 5px;
}

.usage-item p {
    margin: 0;
    font-size: 13px;
}

/* Cookie Types */
.cookie-types {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.cookie-type {
    flex: 1;
    min-width: 150px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
}

.cookie-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cookie-badge.essential {
    background: #dcfce7;
    color: #166534;
}

.cookie-badge.functional {
    background: #fef9c3;
    color: #854d0e;
}

.cookie-badge.analytics {
    background: #dbeafe;
    color: #1e40af;
}

.cookie-badge.marketing {
    background: #ffe4e6;
    color: #9f1239;
}

.cookie-type p {
    margin: 0;
    font-size: 13px;
}

/* Security Features */
.security-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: #f8fafc;
    border-radius: 50px;
}

.security-item i {
    font-size: 18px;
    color: var(--orange-color);
}

.security-item span {
    font-size: 14px;
}

/* Contact Info Legal */
.contact-info-legal {
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
}

.contact-info-legal p {
    margin-bottom: 10px;
}

.contact-info-legal p:last-child {
    margin-bottom: 0;
}

/* Update Notice */
.update-notice {
    background: #fefce8;
    padding: 25px;
    border-radius: 16px;
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.update-notice i {
    font-size: 24px;
    color: #eab308;
    flex-shrink: 0;
}

.update-notice strong {
    display: block;
    margin-bottom: 5px;
}

.update-notice p {
    margin: 0;
    font-size: 14px;
}

/* Consent Section */
.consent-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.consent-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.consent-card i {
    /* font-size: 48px; */
    color: var(--white-color);
}

.consent-card h3 {
    font-size: 24px;
}

/* Related Pages */
.related-pages {
    background: white;
}

.related-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #1e293b;
}

.related-link:hover {
    background: var(--orange-color);
    color: white;
    transform: translateY(-3px);
}

.related-link i:first-child {
    font-size: 24px;
}

.related-link span {
    font-weight: 500;
}

.related-link i:last-child {
    transition: transform 0.3s ease;
}

.related-link:hover i:last-child {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .toc-card {
        position: static;
        margin-bottom: 30px;
    }
    
    .legal-card {
        padding: 30px;
    }
    
    .usage-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .legal-banner h1 {
        font-size: 32px;
    }
    
    .legal-card {
        padding: 25px;
    }
    
    .legal-section h3 {
        font-size: 20px;
    }
    
    .update-notice {
        flex-direction: column;
    }
    
    .consent-card {
        padding: 25px;
    }
    
    .consent-card h3 {
        font-size: 18px;
    }
    
    .cookie-type {
        min-width: 100%;
    }
    
    .security-features {
        gap: 10px;
    }
    
    .security-item {
        padding: 8px 15px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .legal-card {
        padding: 20px;
    }
    
    .legal-section h3 {
        font-size: 18px;
    }
    
    .legal-section p,
    .legal-section ul li {
        font-size: 13px;
    }
    
    .info-box {
        flex-direction: column;
    }
    
    .related-link {
        padding: 15px;
    }
}


/* ============================================
     REFUND POLICY SPECIFIC STYLES
   ============================================ */

/* Payment Flow */
.payment-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    background: #f8fafc;
    padding: 25px;
    border-radius: 16px;
}

.payment-step {
    text-align: center;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    min-width: 120px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.step-percent {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--orange-color);
}

.step-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin: 5px 0;
}

.step-desc {
    font-size: 11px;
    color: #64748b;
}

.payment-flow i {
    font-size: 24px;
    color: #cbd5e1;
}

/* Refund Rules Cards */
.refund-rules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.rule-card {
    display: flex;
    gap: 12px;
    padding: 15px;
    border-radius: 12px;
    align-items: flex-start;
}

.rule-card.good {
    background: #f0fdf4;
    border-left: 3px solid #22c55e;
}

.rule-card.warning {
    background: #fefce8;
    border-left: 3px solid #eab308;
}

.rule-card.danger {
    background: #fef2f2;
    border-left: 3px solid #ef4444;
}

.rule-card i {
    font-size: 20px;
    flex-shrink: 0;
}

.rule-card.good i { color: #22c55e; }
.rule-card.warning i { color: #eab308; }
.rule-card.danger i { color: #ef4444; }

.rule-card strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.rule-card p {
    margin: 0;
    font-size: 12px;
    color: #64748b;
}

/* SEO Note */
.seo-note {
    background: #fefce8;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.seo-note i {
    font-size: 20px;
    color: #eab308;
}

.seo-note p {
    margin: 0;
    font-size: 13px;
}

/* Monthly Grid */
.monthly-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.monthly-card {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
}

.monthly-card i {
    font-size: 24px;
    color: var(--orange-color);
}

.monthly-card strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.monthly-card p {
    margin: 0;
    font-size: 12px;
    color: #64748b;
}

/* Cancellation Options */
.cancellation-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.cancel-item {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
}

.cancel-item i {
    font-size: 24px;
    color: var(--orange-color);
}

.cancel-item h6 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.cancel-item p {
    margin: 0;
    font-size: 12px;
}

.cancellation-note {
    background: #eff6ff;
    padding: 12px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cancellation-note i {
    font-size: 18px;
    color: #3b82f6;
}

.cancellation-note p {
    margin: 0;
    font-size: 13px;
}

/* Dispute Steps */
.dispute-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dispute-step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-num {
    width: 35px;
    height: 35px;
    background: var(--orange-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h6 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.step-content p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}

/* Non-Refundable Grid */
.nonrefundable-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.nonrefundable-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #fef2f2;
    border-radius: 10px;
}

.nonrefundable-item i {
    font-size: 18px;
    color: #ef4444;
}

.nonrefundable-item span {
    font-size: 13px;
    font-weight: 500;
}

/* Refund Steps */
.refund-steps {
    padding-left: 20px;
    margin: 15px 0;
}

.refund-steps li {
    margin-bottom: 10px;
    color: #64748b;
}

.refund-steps li strong {
    color: #1e293b;
}

/* Refund Timeline */
.refund-timeline {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
}

.timeline-item {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    flex-wrap: wrap;
    gap: 10px;
}

.timeline-item span {
    background: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

.timeline-item i {
    color: #cbd5e1;
}

/* Response Time */
.response-time {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f0fdf4;
    border-radius: 10px;
    margin-top: 15px;
}

.response-time i {
    font-size: 18px;
    color: #22c55e;
}

.response-time span {
    font-size: 13px;
}

/* Refund FAQ Accordion */
.faq-accordion-refund {
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.faq-item-refund {
    border-bottom: 1px solid #f1f5f9;
}

.faq-item-refund:last-child {
    border-bottom: none;
}

.faq-question-refund {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question-refund:hover {
    background: #f8fafc;
}

.faq-question-refund i {
    transition: transform 0.3s ease;
    color: var(--orange-color);
}

.faq-item-refund.active .faq-question-refund i {
    transform: rotate(180deg);
}

.faq-answer-refund {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-refund.active .faq-answer-refund {
    padding: 0 22px 18px 22px;
    max-height: 200px;
}

.faq-answer-refund p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Guarantee Card */
.guarantee-section {
    background: white;
}

.guarantee-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 40px;
    border-radius: 24px;
    color: white;
}

.guarantee-card i {
    /* font-size: 48px; */
    color: var(--white-color);
}

.guarantee-card p {
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 992px) {
    .payment-flow {
        flex-direction: column;
    }
    
    .payment-flow i {
        transform: rotate(90deg);
    }
    
    .refund-rules {
        grid-template-columns: 1fr;
    }
    
    .monthly-grid {
        grid-template-columns: 1fr;
    }
    
    .nonrefundable-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cancellation-options {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-item i {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .payment-step {
        width: 100%;
    }
    
    .nonrefundable-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-card {
        padding: 25px;
        text-align: center;
    }
    
    .refund-steps li {
        font-size: 13px;
    }
}


/* ============================================
     PORTFOLIO PAGE STYLES
   ============================================ */

/* Portfolio Banner */
.portfolio-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    text-align: center;
}

/* Filter Buttons */
.portfolio-filters {
    background: white;
    border-bottom: 1px solid #f1f5f9;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.filter-btn {
    padding: 8px 24px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--orange-color);
    border-color: var(--orange-color);
    color: white;
}

/* Portfolio Cards */
.portfolio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-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;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-buttons {
    display: flex;
    gap: 15px;
}

.overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.live-btn {
    background: var(--orange-color);
    color: white;
}

.live-btn:hover {
    background: var(--orange-hover);
    transform: translateY(-3px);
}

.details-btn {
    background: white;
    color: #1e293b;
}

.details-btn:hover {
    background: #f8fafc;
    transform: translateY(-3px);
}

/* Portfolio Info */
.portfolio-info {
    padding: 20px;
}

.portfolio-category {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.category-badge {
    background: rgba(255, 102, 0, 0.1);
    color: var(--orange-color);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

.portfolio-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-info p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.portfolio-tech span {
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
    color: #1e293b;
}

.portfolio-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.portfolio-links:hover {
    gap: 12px;
    color: var(--orange-hover);
}

/* Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid #f1f5f9;
    padding: 20px 25px;
}

.modal-body {
    padding: 25px;
}

.modal-body h6 {
    font-size: 16px;
    font-weight: 700;
    margin: 20px 0 10px;
}

.modal-body h6:first-of-type {
    margin-top: 0;
}

.modal-body ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.modal-body ul li {
    color: #64748b;
    margin-bottom: 8px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.tech-tags span {
    background: #f1f5f9;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

.modal-footer {
    border-top: 1px solid #f1f5f9;
    padding: 20px 25px;
}

/* Stats Section */
.portfolio-stats {
    background: #f8fafc;
}

.stat-box-port {
    padding: 20px;
}

.stat-box-port h2 {
    font-size: 36px;
}

/* CTA Section */
.portfolio-cta {
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

/* Responsive */
@media (max-width: 992px) {
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 6px 18px;
        font-size: 13px;
    }
    
    .portfolio-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .portfolio-banner h1 {
        font-size: 32px;
    }
    
    .filter-buttons {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 5px 14px;
        font-size: 12px;
    }
    
    .overlay-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .overlay-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .portfolio-info h4 {
        font-size: 16px;
    }
    
    .stat-box-port h2 {
        font-size: 28px;
    }
}


/* ============================================
     THANK YOU PAGE STYLES
   ============================================ */

.thankyou-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thankyou-card {
    background: white;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.thankyou-icon i {
    font-size: 48px;
    color: white;
}

.thankyou-card h1 {
    color: #1e293b;
}

.thankyou-card h3 {
    font-size: 24px;
    color: #1e293b;
}

/* Next Steps */
.whats-next {
    background: #f8fafc;
    padding: 25px;
    border-radius: 20px;
    margin: 25px 0;
     /*text-align: left; */
}


.next-steps {
    display: flex;
     flex-direction: column; 
    gap: 20px;
}

.step-item {
    /*display: flex;*/
    align-items: center;
    gap: 15px;
}

.step-num3 {
    width: 40px;
    height: 40px;
    background: var(--orange-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.step-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.step-text p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}

/* Contact Info */
.contact-info {
    margin-bottom: 25px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.contact-buttons .btn-outline-orange {
    padding: 8px 20px;
    border-radius: 50px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.action-buttons .btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
}

/* Useful Links */
.useful-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.useful-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.useful-link i {
    font-size: 36px;
    color: var(--orange-color);
}

.useful-link span {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

/* Social Share */
.social-share-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}

.share-icon.facebook { background: #1877f2; }
.share-icon.instagram { background: linear-gradient(45deg, #f09433, #d62976, #962fbf); }
.share-icon.linkedin { background: #0077b5; }
.share-icon.twitter { background: #1da1f2; }

.share-icon:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .thankyou-card {
        padding: 30px;
    }
    
    .thankyou-icon {
        width: 65px;
        height: 65px;
    }
    
    .thankyou-icon i {
        font-size: 36px;
    }
    
    .thankyou-card h1 {
        font-size: 32px;
    }
    
    .thankyou-card h3 {
        font-size: 20px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-text {
        text-align: center;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .useful-link {
        padding: 15px;
    }
    
    .useful-link i {
        font-size: 28px;
    }
    
    .useful-link span {
        font-size: 12px;
    }
}



/* ============================================
     PRICING PAGE STYLES
   ============================================ */

.pricing-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    text-align: center;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid #e65c00;
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #e65c00;
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-header h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.price {
    margin-bottom: 10px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: #e65c00;
}

.amount {
    font-size: 42px;
    font-weight: 800;
    color: #e65c00;
}

.period {
    font-size: 14px;
    color: #64748b;
}

.pricing-header p {
    font-size: 13px;
    color: #64748b;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: #10b981;
    font-size: 16px;
    flex-shrink: 0;
}

/* Comparison Table */
.comparison-section {
    background: white;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.comparison-table th {
    background: #f8fafc;
    font-weight: 700;
}

.comparison-table td.highlight {
    background: rgba(230, 92, 0, 0.08);
    font-weight: 700;
    color: #e65c00;
}

/* Custom Package Card */
.custom-package-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 40px;
    border-radius: 24px;
}

/* FAQ Accordion */
.faq-accordion {
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #f1f5f9;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #e65c00;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 22px 18px 22px;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 15px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .pricing-banner h1 {
        font-size: 32px;
    }
    
    .price .amount {
        font-size: 36px;
    }
    
    .custom-package-card {
        padding: 30px 25px;
        text-align: center;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .faq-question {
        padding: 14px 18px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .comparison-table {
        font-size: 11px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px 10px;
    }
}


/* ============================================
     BLOG PAGE STYLES
   ============================================ */

/* Blog Banner */
.blog-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    text-align: center;
}

/* Category Filters */
.blog-categories {
    background: white;
    border-bottom: 1px solid #f1f5f9;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.cat-btn {
    padding: 8px 24px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cat-btn:hover,
.cat-btn.active {
    background: #e65c00;
    border-color: #e65c00;
    color: white;
}

/* Featured Post */
.featured-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.featured-badge {
    display: inline-block;
    background: rgba(230, 92, 0, 0.1);
    color: #e65c00;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #e65c00;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

.blog-content {
    padding: 20px;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #64748b;
}

.post-meta i {
    margin-right: 4px;
    font-size: 12px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e65c00;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 12px;
    color: #cc5200;
}

/* Newsletter Section */
.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    padding: 12px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 12px 25px;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-banner h1 {
        font-size: 32px;
    }
    
    .featured-card {
        padding: 25px;
        text-align: center;
    }
    
    .featured-card .post-meta {
        justify-content: center;
    }
    
    .category-filters {
        gap: 8px;
    }
    
    .cat-btn {
        padding: 6px 16px;
        font-size: 12px;
    }
    
    .blog-title {
        font-size: 16px;
    }
    
    .post-meta {
        gap: 10px;
        font-size: 11px;
    }
}



/* ============================================
     BLOG DETAILS PAGE STYLES
   ============================================ */

/* Blog Details Header */
.blog-details-header {
    margin-bottom: 20px;
}

.blog-category-badge {
    display: inline-block;
    background: rgba(230, 92, 0, 0.1);
    color: #e65c00;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.blog-meta-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #64748b;
    font-size: 14px;
}

.blog-meta-details i {
    margin-right: 5px;
}

/* Blog Content */
.blog-details-content {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
}

.blog-details-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #1e293b;
}

.blog-details-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 25px 0 12px;
    color: #1e293b;
}

.blog-details-content p {
    margin-bottom: 18px;
}

.blog-details-content ul, 
.blog-details-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.blog-details-content li {
    margin-bottom: 8px;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Author Box */
.author-avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* Sidebar Widgets */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.category-list li a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-list li a:hover {
    color: #e65c00;
}

.category-list li span {
    color: #64748b;
}

.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.recent-posts li a {
    display: block;
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.recent-posts li a:hover {
    color: #e65c00;
}

.recent-posts li span {
    font-size: 12px;
    color: #64748b;
}

/* Social Follow */
.social-follow {
    display: flex;
    gap: 12px;
}

.follow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.follow-btn.facebook { background: #1877f2; }
.follow-btn.instagram { background: linear-gradient(45deg, #f09433, #d62976, #962fbf); }
.follow-btn.linkedin { background: #0077b5; }
.follow-btn.twitter { background: #1da1f2; }

.follow-btn:hover {
    transform: translateY(-3px);
}

/* Related Cards */
.related-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-category {
    display: inline-block;
    background: rgba(230, 92, 0, 0.1);
    color: #e65c00;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .blog-details-header h1 {
        font-size: 28px;
    }
    
    .blog-meta-details {
        gap: 12px;
        font-size: 12px;
    }
    
    .blog-details-content {
        font-size: 15px;
    }
    
    .blog-details-content h2 {
        font-size: 24px;
    }
    
    .blog-details-content h3 {
        font-size: 20px;
    }
    
    .share-buttons {
        gap: 8px;
    }
    
    .share-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
}

/* xx xx latest-blog-section home page xxxx*/

.latest-blog-section .blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.latest-blog-section .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.latest-blog-section .blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.latest-blog-section .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-blog-section .blog-category {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--orange-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
}

.latest-blog-section .blog-content {
    padding: 20px;
}

.latest-blog-section .blog-meta {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
}

.latest-blog-section .blog-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 12px;
}

.latest-blog-section .blog-title a {
    color: #1e293b;
    text-decoration: none;
}

.latest-blog-section .blog-title a:hover {
    color: var(--orange-color);
}

.latest-blog-section .blog-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 15px;
}
.blog-read-more{
    text-decoration: none !important;
}

.blog-read-more:hover{
    text-decoration: none !important;
}

/* ============================================
   MARQUEE ANIMATION & MOBILE RESPONSIVENESS
============================================ */
@keyframes nspMarqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-track {
    display: inline-flex;
    white-space: nowrap;
    animation: nspMarqueeScroll 28s linear infinite;
    min-width: 200%;
}

.trust-marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

/* Mobile Screens Adjustments (< 768px) */
@media (max-width: 768px) {
    .nsp-chatbot-container {
        bottom: 15px !important;
        right: 15px !important;
    }
    .nsp-chat-window {
        width: calc(100vw - 30px) !important;
        height: 500px !important;
        bottom: 75px !important;
        right: 0 !important;
    }
    .nsp-chat-teaser {
        width: 230px !important;
        bottom: 70px !important;
    }
    .home-portfolio .card-img-top {
        height: 200px !important;
        object-fit: cover;
    }
    .tech-stack-home .fs-2 {
        font-size: 1.5rem !important;
    }
    .trust-marquee-section {
        padding: 8px 0 !important;
    }
}

/* ============================================
   HIGH-CONTRAST ACCESSIBILITY & TEXT VISIBILITY FIXES
   (100% Zero Ranking & Zero Data Loss Guaranteed)
============================================ */

/* 1. Dark Background Sections & Cards */
.bg-dark, 
.stats-section, 
.cta-section, 
.cta-services, 
.portfolio-cta, 
.audit-card, 
.consultation-card, 
.ecom-contact-card, 
.maint-contact-card,
.ecom-success-card {
    color: #ffffff !important;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6,
.stats-section h1, .stats-section h2, .stats-section h3, .stats-section h4, .stats-section h5, .stats-section h6,
.cta-section h1, .cta-section h2, .cta-section h3, .cta-section h4, .cta-section h5, .cta-section h6,
.cta-services h1, .cta-services h2, .cta-services h3, .cta-services h4, .cta-services h5, .cta-services h6,
.portfolio-cta h1, .portfolio-cta h2, .portfolio-cta h3, .portfolio-cta h4, .portfolio-cta h5, .portfolio-cta h6 {
    color: #ffffff !important;
}

.stats-section .stat-item h2,
.stats-section .stat-card h2,
.stats-section .stat-number {
    color: #ff6600 !important;
    font-weight: 800;
}

.stats-section .stat-item p,
.stats-section .stat-card p,
.stats-section .stat-label {
    color: #cbd5e1 !important;
}

/* 2. Dark Section Paragraphs & Lists */
.bg-dark p, .bg-dark .text-secondary, .bg-dark .text-muted,
.stats-section p, .stats-section .text-secondary,
.cta-section p, .cta-section .text-secondary,
.cta-services p, .cta-services .text-secondary,
.portfolio-cta p, .portfolio-cta .text-secondary {
    color: #cbd5e1 !important;
}

/* 3. Light Background Sections & Typography */
.bg-light, .bg-white {
    color: #1e293b;
}

.bg-light h1, .bg-light h2, .bg-light h3, .bg-light h4, .bg-light h5, .bg-light h6,
.bg-white h1, .bg-white h2, .bg-white h3, .bg-white h4, .bg-white h5, .bg-white h6 {
    color: #0f172a;
}

.bg-light p, .bg-white p {
    color: #334155;
}

/* 4. Card Titles & Feature Text */
.card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
    color: #0f172a;
}

.card p {
    color: #475569;
}

/* 5. Button Text High Contrast */
.btn-orange {
    color: #ffffff !important;
    background-color: #ff6600 !important;
}

.btn-orange:hover {
    color: #ffffff !important;
    background-color: #e65c00 !important;
}

.btn-outline-orange {
    color: #ff6600 !important;
    border-color: #ff6600 !important;
}

.btn-outline-orange:hover {
    color: #ffffff !important;
    background-color: #ff6600 !important;
}

.btn-success {
    color: #ffffff !important;
    background-color: #25d366 !important;
    border-color: #25d366 !important;
}

.btn-success:hover {
    color: #ffffff !important;
    background-color: #1ebe5d !important;
}

/* 6. Form Input Visibility & Contrast */
.form-control, .form-select {
    color: #0f172a !important;
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
}

.form-control::placeholder {
    color: #64748b !important;
    opacity: 1;
}

.form-control:focus, .form-select:focus {
    border-color: #ff6600 !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.15) !important;
}

/* 7. Accordions High Contrast */
.accordion-button {
    color: #0f172a !important;
    background-color: #ffffff !important;
    font-weight: 700;
}

.accordion-button:not(.collapsed) {
    color: #ff6600 !important;
    background-color: #fff7ed !important;
}

.accordion-body {
    color: #334155 !important;
    background-color: #ffffff !important;
}

/* 8. Badge Visibility */
.badge.bg-orange {
    color: #ffffff !important;
    background-color: #ff6600 !important;
}

.badge.bg-light {
    color: #0f172a !important;
    background-color: #f1f5f9 !important;
    border: 1px solid #cbd5e1 !important;
}

/* 9. Tools CTA Banner High Contrast Fix */
.cta-banner-bg {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    color: #ffffff !important;
}

.cta-banner-bg h1, 
.cta-banner-bg h2, 
.cta-banner-bg h3, 
.cta-banner-bg h4, 
.cta-banner-bg h5, 
.cta-banner-bg h6,
.cta-banner-bg p, 
.cta-banner-bg .lead {
    color: #ffffff !important;
    opacity: 1 !important;
}

.cta-banner-bg .btn-nsp-orange,
.btn-nsp-orange {
    background-color: #ff6600 !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
}

.cta-banner-bg .btn-nsp-orange:hover,
.btn-nsp-orange:hover {
    background-color: #e65c00 !important;
    color: #ffffff !important;
}

