/* ========== CSS RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2E7D32;
    --dark-green: #1B5E20;
    --light-green: #4CAF50;
    --white: #FFFFFF;
    --black: #333333;
    --gray: #666666;
    --light-gray: #F5F5F5;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --border-radius: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--dark-green);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== TICKER BAR ========== */
.ticker-bar {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 10px 0;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
    padding-left: 100%;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.ticker-content span {
    margin: 0 30px;
    font-weight: 500;
}

/* ========== NAVBAR ========== */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 40px;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
}

.nav-btn {
    padding: 10px 20px;
    background-color: var(--dark-green);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    display: inline-block;
}

.nav-btn:hover, .nav-btn.active {
    background-color: var(--white);
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    margin: 3px 0;
    transition: var(--transition);
}

/* ========== FLOATING BUTTONS ========== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    pointer-events: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-btn.call {
    background-color: var(--primary-green);
    color: var(--white);
}

.floating-btn.whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* ========== HERO SLIDER ========== */
.hero-slider {
    height: 80vh;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/images/hero-slider/slide1.jpg');
}

.slide:nth-child(2) {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/images/hero-slider/slide2.jpg');
}

.slide:nth-child(3) {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/images/hero-slider/slide3.jpg');
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: slideUp 1s ease;
}

.slide-content p {
    font-size: 1.2rem;
    animation: slideUp 1s ease 0.3s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== IPHONE DEMO POPUP ========== */
.iphone-demo {
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 300px;
    height: 600px;
    background: url('https://cdn.jsdelivr.net/npm/iphone-15-pro-max@1.0.0/iphone-15-pro-max.png') no-repeat center/contain;
    z-index: 998;
    display: none;
}

.iphone-screen {
    position: absolute;
    top: 60px;
    left: 25px;
    right: 25px;
    bottom: 60px;
    background: var(--white);
    border-radius: 40px;
    overflow: hidden;
    direction: rtl;
}

.arabic-content {
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

.arabic-content h3 {
    color: var(--primary-green);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.menu-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
}

.hand-pointer {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    animation: clickAnimation 2s infinite;
}

@keyframes clickAnimation {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.mobile-menu {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 20px 20px 0 0;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: var(--black);
    text-align: center;
    font-size: 1.1rem;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* ========== HOME PAGE CARDS ========== */
.home-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 40px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    color: var(--dark-green);
}

.btn {
    display: inline-block;
    padding : 12px 30px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 10px solid transparent;
    cursor: pointer;
    margin-top: 15px;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

/* ========== SERVICES PAGE ========== */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.package-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.package-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-green);
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card h3 {
    color: var(--dark-green);
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    color: var(--primary-green);
    font-weight: 700;
    margin: 20px 0;
}

.delivery {
    color: var(--gray);
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.features-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: '✓';
    color: var(--primary-green);
    margin-right: 10px;
    font-weight: bold;
}

.whatsapp-btn {
    background-color: #25D366;
    width: 100%;
    text-align: center;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: var(--white);
}

/* ========== COMPARISON TABLE ========== */
.comparison-section {
    margin-top: 80px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
}

.comparison-table th {
    background-color: var(--primary-green);
    color: var(--white);
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--light-gray);
}

.tick {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.cross {
    color: #ff4444;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ========== ABOUT US PAGE ========== */
.profile-section {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.profile-image {
    flex: 1;
    min-width: 300px;
}

.profile-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.profile-info {
    flex: 2;
    min-width: 300px;
}

.profile-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.profile-link {
    padding: 10px 25px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50px;
    transition: var(--transition);
}

.profile-link:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
}

.skills-section {
    margin-top: 80px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.skill-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.skill-item:hover {
    transform: translateY(-5px);
}

.skill-icon {
    font-size: 40px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

/* ========== CONTACT PAGE ========== */
.contact-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 60px;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.contact-info {
    margin: 30px 0;
}

.contact-info p {
    margin: 15px 0;
    font-size: 1.1rem;
}

.contact-whatsapp {
    background-color: #25D366;
    margin-top: 20px;
}

.contact-whatsapp:hover {
    background-color: #128C7E;
    color: var(--white);
}

/* ========== ACCOUNTS PAGE ========== */
.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.account-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.account-card:hover {
    transform: translateY(-5px);
}

.account-logo {
    height: 60px;
    margin-bottom: 20px;
}

.account-details {
    margin: 25px 0;
    text-align: left;
}

.account-detail {
    margin: 15px 0;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.account-label {
    font-weight: 600;
    color: var(--gray);
}

.account-value {
    font-family: monospace;
    color: var(--black);
}

.copy-btn {
    padding: 8px 20px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.copy-btn:hover {
    background: var(--dark-green);
}

.copy-btn.copied {
    background: var(--dark-green);
}

/* ========== BLOGS PAGE ========== */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-topic {
    display: inline-block;
    padding: 5px 15px;
    background: var(--light-green);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-excerpt {
    color: var(--gray);
    margin: 15px 0;
}

.read-more {
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 10px;
}

/* ========== BLOG DETAIL PAGE ========== */
.blog-detail-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-meta {
    color: var(--gray);
    margin: 20px 0;
}

.blog-meta span {
    margin: 0 15px;
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.blog-content-detail {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-content-detail h2 {
    margin-top: 40px;
    color: var(--dark-green);
}

.blog-content-detail p {
    margin: 20px 0;
}

/* ========== PROJECTS PAGE ========== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 25px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.tech-tag {
    padding: 5px 15px;
    background: var(--light-gray);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray);
}

/* ========== FOOTER ========== */
footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact p {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.8);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 110px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .iphone-demo {
        display: none !important;
    }
    
    section {
        padding: 50px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-slider {
        height: 60vh;
    }
    
    .comparison-table {
        display: block;
        overflow-x: auto;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .floating-buttons {
        padding: 0 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .package-cards,
    .home-cards,
    .blogs-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .card, .package-card, .account-card {
        padding: 25px 20px;
    }
    
    .btn {
        padding: 10px 25px;
    }
}

/* ========== UTILITY CLASSES ========== */
.text-center {
    text-align: center;
}

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-50 { margin-bottom: 50px; }

.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== LOADING ANIMATION ========== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-gray);
    border-top: 5px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========== HERO SLIDER UPDATES ========== */
.hero-slider {
    height: 80vh;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    border-radius: var(--border-radius);
}

.slider-container {
    height: 100%;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: -1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideUp 1s ease;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: slideUp 1s ease 0.2s both;
}

.slider-btn {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
    animation: slideUp 1s ease 0.4s both;
    border: 2px solid transparent;
}

.slider-btn:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--white);
}

/* Auto-play indicator */
.auto-play-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    backdrop-filter: blur(5px);
}

/* Animation Keyframes */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation Classes */
.slide.active .slide-content h1 {
    animation: slideUp 1s ease;
}

.slide.active .slide-content p {
    animation: slideUp 1s ease 0.2s both;
}

.slide.active .slider-btn {
    animation: slideUp 1s ease 0.4s both;
}
/* Home Cards کے لیے additional styles */
.project-tech-small {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 15px 0;
}

.tech-tag {
    background: #017e27;
    color: white;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.features-list-small {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.features-list-small li {
    margin-bottom: 8px;
    font-size: 14px;
}

.features-list-small i {
    color: #28a745;
    margin-right: 8px;
}

.price-tag-home {
    font-size: 24px;
    font-weight: bold;
    color: #007209;
    margin: 10px 0;
}

.delivery-time {
    color: #666;
    margin-bottom: 15px;
}

.stats-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 15px 0;
}

.stats-small span {
    font-size: 13px;
    color: #555;
}

.stats-small i {
    color: #058b4d;
    margin-right: 5px;
}

.contact-info-small {
    margin: 15px 0;
}

.contact-info-small p {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
}

.contact-info-small i {
    color: #016d1c;
    margin-right: 8px;
    width: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}





















/* Blogs Grid Layout */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e8f5e9;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: #2E7D32;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #1B5E20;
}

.blog-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    background: #e8f5e9;
    color: #1B5E20;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #c8e6c9;
    transform: translateY(-2px);
}

.btn-read {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-read:hover {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}
/* Home Cards Images */
.card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    margin-bottom: 20px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

/* Adjust card icon position when image is present */
.card-image + .card-icon {
    margin-top: -15px;
    position: relative;
    z-index: 2;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 3px solid #2E7D32;
}

.card-image + .card-icon i {
    font-size: 24px;
    color: #2E7D32;
}

/* Adjust card padding when image is present */
.card .card-image + .card-icon ~ h3 {
    margin-top: 15px;
}

/* Responsive design for card images */
@media (max-width: 768px) {
    .card-image {
        height: 150px;
    }
    
    .card-image + .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-image + .card-icon i {
        font-size: 20px;
    }
}











/* ========== ADDITIONAL BLOG STYLES - GREEN THEME ========== */

/* Additional styles for package guide blog */
.warning-box {
    background: #fff8e1;
    border-left: 4px solid #ffb300;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.warning-box h4 {
    color: #e65100;
    margin-top: 0;
}

.warning-box h4 i {
    color: #ff9800;
    margin-right: 10px;
}

.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.success-story {
    background: #e8f5e9;
    border-left: 4px solid #4CAF50;
    padding: 20px;
    border-radius: 5px;
    margin: 25px 0;
    font-style: italic;
}

.success-story h4 {
    color: #1B5E20;
    margin-top: 0;
}

.success-story h4 i {
    color: #4CAF50;
    margin-right: 10px;
}

.steps-timeline {
    position: relative;
    padding-left: 30px;
    margin: 30px 0;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #4CAF50, #2E7D32);
}

.step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.step-number {
    position: absolute;
    left: -40px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(76, 175, 80, 0.3);
}

.step-content {
    padding-left: 20px;
}

.step-content h4 {
    margin-bottom: 10px;
    color: #1B5E20;
}

.step-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.decision-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.matrix-item {
    background: #f1f8e9;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #c8e6c9;
    transition: all 0.3s ease;
}

.matrix-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.matrix-item h4 {
    color: #2E7D32;
    margin-bottom: 10px;
    font-size: 16px;
}

.matrix-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.quick-comparison {
    overflow-x: auto;
    margin: 20px 0;
}

.quick-comparison table {
    font-size: 14px;
    min-width: 100%;
    border-collapse: collapse;
}

.quick-comparison th {
    background: #2E7D32;
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: 600;
}

.quick-comparison td {
    padding: 10px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.quick-comparison tr:nth-child(even) {
    background: #f9f9f9;
}

.contact-mini {
    margin: 15px 0;
    padding: 15px;
    background: #f1f8e9;
    border-radius: 8px;
}

.contact-mini p {
    margin: 8px 0;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
}

.contact-mini i {
    color: #2E7D32;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
    background: #2E7D32;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-small:hover {
    background: #1B5E20;
    transform: translateY(-2px);
    color: white;
}

/* Blog Share Buttons with Green Theme */
.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #227708; }
.share-btn.whatsapp { background: #25d366; }

.share-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Blog Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px 0;
}

.page-link {
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background: #2E7D32;
    color: white;
    border-color: #2E7D32;
}

/* Blog Newsletter Form */
.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #c8e6c9;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.newsletter-form button {
    width: 100%;
    padding: 12px;
    background: #2E7D32;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #1B5E20;
    transform: translateY(-2px);
}

/* Blog Image Caption */
.image-caption {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
}

/* Blog Responsive Design */
@media (max-width: 768px) {
    .steps-timeline {
        padding-left: 20px;
    }
    
    .step-number {
        left: -30px;
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    
    .decision-matrix {
        grid-template-columns: 1fr;
    }
    
    .quick-comparison {
        font-size: 12px;
    }
    
    .quick-comparison th,
    .quick-comparison td {
        padding: 8px 5px;
    }
    
    .matrix-item {
        padding: 12px;
    }
    
    .warning-box,
    .success-story,
    .info-box {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .blog-header h1 {
        font-size: 24px;
    }
    
    .blog-excerpt {
        font-size: 16px;
    }
    
    .step-content h4 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 13px;
    }
}

/* Blog Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card {
    animation: fadeInUp 0.5s ease forwards;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-card:nth-child(5) { animation-delay: 0.5s; }
.blog-card:nth-child(6) { animation-delay: 0.6s; }

/* Blog Loading Skeleton */
.blog-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Blog Print Styles */
@media print {
    .floating-buttons,
    .navbar,
    .footer,
    .share-buttons,
    .newsletter {
        display: none !important;
    }
    
    .blog-article {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .blog-content-wrapper {
        grid-template-columns: 1fr;
    }
}




/* Quick Links in Sidebar */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f1f8e9;
    border-radius: 8px;
    color: #1B5E20;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #c8e6c9;
}

.quick-link i {
    margin-right: 10px;
    color: #2E7D32;
    width: 20px;
    text-align: center;
}

.quick-link:hover {
    background: #2E7D32;
    color: white;
    transform: translateX(5px);
}

.quick-link:hover i {
    color: white;
}


/* ========== BLOG ARTICLE PAGE SPECIFIC STYLES ========== */

/* Blog Article Container */
.blog-article {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    text-align: left;
}

.breadcrumb a {
    color: #2E7D32;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #1B5E20;
    text-decoration: underline;
}

.breadcrumb span {
    color: #333;
    font-weight: 600;
}

.blog-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
    color: #666;
    font-size: 14px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-meta i {
    color: #2E7D32;
}

.blog-header h1 {
    font-size: 2.8rem;
    color: #1B5E20;
    margin: 20px 0;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.featured-image {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-caption {
    text-align: center;
    font-size: 14px;
    color: #666;
    padding: 10px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    font-style: italic;
}

/* Blog Content Layout */
.blog-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 50px 0;
}

.blog-main-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.blog-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e8f5e9;
}

.blog-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.blog-section h2 {
    color: #1B5E20;
    font-size: 2rem;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 5px solid #2E7D32;
}

.blog-section h3 {
    color: #2E7D32;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.blog-section h4 {
    color: #333;
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

.blog-section p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
    border-left: 4px solid #2E7D32;
    padding: 25px;
    border-radius: 0 10px 10px 0;
    margin: 25px 0;
}

.info-box h3 {
    color: #1B5E20;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.info-box li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.info-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2E7D32;
    font-weight: bold;
}

/* Pages Grid */
.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.page-card {
    background: white;
    border: 2px solid #4CAF50;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.2);
}

.page-card h4 {
    color: #1B5E20;
    margin-bottom: 10px;
}

/* Feature Box */
.feature-box {
    display: flex;
    gap: 25px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    align-items: flex-start;
}

.feature-icon {
    font-size: 40px;
    color: #2E7D32;
    flex-shrink: 0;
    background: #e8f5e9;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h4 {
    color: #1B5E20;
    margin-top: 0;
}

.feature-content ul {
    list-style: none;
    padding: 0;
}

.feature-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.feature-content li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #2E7D32;
    font-weight: bold;
}

/* Checklist Box */
.checklist-box {
    background: #fff8e1;
    border-left: 4px solid #ffb300;
    padding: 25px;
    border-radius: 0 10px 10px 0;
    margin: 25px 0;
}

.checklist-box h3 {
    color: #e65100;
    margin-top: 0;
}

.checklist-box ul {
    list-style: none;
    padding: 0;
}

.checklist-box li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ffe0b2;
}

.checklist-box li:last-child {
    border-bottom: none;
}

.checklist-box input[type="checkbox"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    accent-color: #2E7D32;
}

/* Comparison Box */
.comparison-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.language-option {
    background: white;
    border: 2px solid #c8e6c9;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.language-option:hover {
    border-color: #2E7D32;
    transform: translateY(-5px);
}

.language-option h4 {
    color: #1B5E20;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-option ul {
    list-style: none;
    padding: 0;
}

.language-option li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.language-option li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2E7D32;
    font-weight: bold;
}

/* Steps Timeline */
.steps-timeline {
    position: relative;
    margin: 30px 0;
}

.step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    font-size: 18px;
}

.step-content h4 {
    color: #1B5E20;
    margin: 0 0 10px 0;
}

/* Warning Box */
.warning-box {
    background: #ffebee;
    border-left: 4px solid #f44336;
    padding: 25px;
    border-radius: 0 10px 10px 0;
    margin: 25px 0;
}

.warning-box h4 {
    color: #c62828;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Tech Table */
.tech-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tech-table th {
    background: #2E7D32;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.tech-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.tech-table tr:nth-child(even) {
    background: #f9f9f9;
}

.tech-table tr:hover {
    background: #f1f8e9;
}

/* Decision Matrix */
.decision-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.matrix-item {
    background: white;
    border: 2px solid #c8e6c9;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.matrix-item:hover {
    border-color: #2E7D32;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.matrix-item h4 {
    color: #1B5E20;
    margin-bottom: 10px;
}

/* Success Story */
.success-story {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-left: 4px solid #4CAF50;
    padding: 25px;
    border-radius: 0 10px 10px 0;
    margin: 25px 0;
    font-style: italic;
}

.success-story h4 {
    color: #1B5E20;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Conclusion Section */
.conclusion {
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #2E7D32;
}

.conclusion h2 {
    color: #1B5E20;
    border-left: none;
    padding-left: 0;
}

.conclusion ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.conclusion li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.conclusion li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2E7D32;
    font-weight: bold;
    font-size: 18px;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    color: white;
    margin-top: 0;
    font-size: 1.8rem;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: #2E7D32;
}

.btn-primary:hover {
    background: #e8f5e9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2E7D32;
    transform: translateY(-3px);
}

/* Blog Footer */
.blog-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e8f5e9;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.share-buttons span {
    font-weight: 600;
    color: #333;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.article-tags span {
    font-weight: 600;
    color: #333;
}

.tag {
    background: #e8f5e9;
    color: #1B5E20;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #c8e6c9;
}

.tag:hover {
    background: #2E7D32;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #e8f5e9;
}

.sidebar-widget h3 {
    color: #1B5E20;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8f5e9;
    font-size: 1.4rem;
}

.popular-articles {
    list-style: none;
    padding: 0;
}

.popular-articles li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8f5e9;
}

.popular-articles li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-articles a {
    display: block;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.popular-articles a:hover {
    transform: translateX(5px);
}

.article-title {
    display: block;
    font-weight: 600;
    color: #1B5E20;
    margin-bottom: 5px;
}

.article-date {
    display: block;
    font-size: 14px;
    color: #666;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e8f5e9;
}

.quick-link i {
    color: #2E7D32;
    font-size: 18px;
    width: 24px;
}

.quick-link:hover {
    background: #2E7D32;
    color: white;
    transform: translateX(10px);
}

.quick-link:hover i {
    color: white;
}

.newsletter p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 15px;
    border: 2px solid #c8e6c9;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #2E7D32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}

.newsletter-form button {
    padding: 15px;
    background: #2E7D32;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #1B5E20;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .blog-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 30px;
    }
    
    .blog-header h1 {
        font-size: 2.4rem;
    }
    
    .comparison-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-main-content {
        padding: 25px;
    }
    
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-excerpt {
        font-size: 1.1rem;
    }
    
    .featured-image img {
        height: 300px;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .feature-box {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .pages-grid {
        grid-template-columns: 1fr;
    }
    
    .decision-matrix {
        grid-template-columns: 1fr;
    }
    
    .steps-timeline {
        padding-left: 20px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin-right: 15px;
    }
    
    .tech-table {
        display: block;
        overflow-x: auto;
    }
    
    .sidebar-widget {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .blog-article {
        padding: 0 15px;
    }
    
    .blog-header h1 {
        font-size: 1.8rem;
    }
    
    .blog-section h2 {
        font-size: 1.6rem;
    }
    
    .blog-section h3 {
        font-size: 1.3rem;
    }
    
    .info-box,
    .checklist-box,
    .warning-box,
    .success-story {
        padding: 20px;
    }
    
    .feature-box {
        padding: 20px;
    }
    
    .conclusion {
        padding: 25px;
    }
    
    .cta-box {
        padding: 25px;
    }
    
    .featured-image img {
        height: 250px;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .article-tags {
        justify-content: center;
    }
    
    .breadcrumb {
        font-size: 13px;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .navbar,
    .hero-slider,
    .floating-buttons,
    .blog-sidebar,
    .share-buttons,
    .footer,
    .ticker-bar {
        display: none !important;
    }
    
    .blog-article {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .blog-main-content {
        padding: 0;
        box-shadow: none;
        background: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    h1, h2, h3, h4 {
        color: #000 !important;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .cta-box {
        background: none !important;
        color: #000 !important;
        border: 1px solid #000;
    }
    
    .btn-primary, .btn-secondary {
        display: none !important;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-section {
    animation: fadeInUp 0.5s ease forwards;
}

.blog-section:nth-child(1) { animation-delay: 0.1s; }
.blog-section:nth-child(2) { animation-delay: 0.2s; }
.blog-section:nth-child(3) { animation-delay: 0.3s; }
.blog-section:nth-child(4) { animation-delay: 0.4s; }
.blog-section:nth-child(5) { animation-delay: 0.5s; }
.blog-section:nth-child(6) { animation-delay: 0.6s; }
.blog-section:nth-child(7) { animation-delay: 0.7s; }
.blog-section:nth-child(8) { animation-delay: 0.8s; }
.blog-section:nth-child(9) { animation-delay: 0.9s; }
.blog-section:nth-child(10) { animation-delay: 1s; }

/* ========== LOADING STATES ========== */
.blog-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========== DARK MODE SUPPORT ========== */
@media (prefers-color-scheme: dark) {
    .blog-main-content,
    .sidebar-widget,
    .page-card,
    .matrix-item,
    .language-option {
        background: #1a1a1a;
        color: #e0e0e0;
    }
    
    .blog-section h2,
    .blog-section h3,
    .blog-section h4,
    .blog-header h1 {
        color: #4CAF50;
    }
    
    p, .article-title, .quick-link {
        color: #ccc;
    }
    
    .info-box,
    .success-story {
        background: #2a2a2a;
    }
    
    .warning-box {
        background: #332222;
    }
    
    .checklist-box {
        background: #333322;
    }
    
    .tag {
        background: #2a2a2a;
        color: #4CAF50;
        border-color: #444;
    }
    
    .newsletter-form input {
        background: #2a2a2a;
        border-color: #444;
        color: #e0e0e0;
    }
}