@font-face {
    font-family: 'BeIN';
    src: url('https://cdn.jsdelivr.net/gh/elhakeem/beinfont/BeINNormal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #73BCB1;
    --secondary-color: #113237;
    --light-bg: #f8f9fa;
    --heading-font: 'BeIN', sans-serif;
    --body-font: 'BeIN', sans-serif;
}

body {
    font-family: var(--body-font);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p, a, span, div, button, input, textarea, select, option, li, ul, ol, table, td, th, label, .section-title, .hero-title, .cta-title, .footer-title {
    font-family: var(--heading-font);
}

.navbar, .navbar-brand, .nav-link, .navbar-nav, .footer-section, .footer-links, .footer-contact, .social-links, .copyright, .footer-download, .footer-payment {
    font-family: var(--heading-font) !important;
}

.hero-section, .services-section, .features-section, .cta-section, .testimonials-section, .stats-section, .faq-section {
    font-family: var(--heading-font) !important;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.btn-outline {
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    margin: 0 0.5rem;
}

.nav-link.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.nav-link.btn-fill {
    background: var(--primary-color);
    border-radius: 50px;
    color: white;
    margin: 0 0.5rem;
}

.nav-link.btn-fill:hover {
    background: #009e7a;
    color: white;
}

.navbar.scrolled {
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 40px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    max-height: 70vh; 
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Services Section */
.services-section {
    padding: 10px 0;
    background: var(--light-bg);
    position: relative;
}

.swiper-container {
    padding-bottom: 50px;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
}

.swiper-wrapper {
    touch-action: pan-x;
}

.swiper-pagination {
    bottom: 0 !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.service-description{
    display: -webkit-box;
    -webkit-line-clamp: 2;      
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3em; 
}

.service-card {
    background: #ededed;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    background:  #f1d1e6;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next, .swiper-button-prev{
    color: var(--primary-color);
}
.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color : #11323;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Footer Styles */
.footer-section {
    background: #f8f9fa;
    color: var(--secondary-color);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.footer-text {
    color: #666;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #009e7a;
    color: white;
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.footer-bottom {
    padding-top: 1rem;
}

.store-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.store-link:hover {
    transform: translateY(-3px);
}

.payment-icon {
    margin: 0.5rem;
    transition: transform 0.3s ease;
}

.payment-icon:hover {
    transform: translateY(-3px);
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        margin-bottom: 20px;
    }

    .img-fluid{
        max-width: 80%;
    }

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

/* Floating Buttons */
.float-button {
    position: fixed;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

.float-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.whatsapp-float {
    left: 30px;
    background-color: #25d366;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
}

.scroll-top {
    right: 30px;
    background-color: var(--primary-color);
    opacity: 0;
    visibility: hidden;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: #009e7a;
}

@media (max-width: 768px) {
    .float-button {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .whatsapp-float {
        left: 20px;
        bottom: 20px;
    }

    .scroll-top {
        right: 20px;
        bottom: 20px;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link.btn-outline,
    .nav-link.btn-fill {
        display: inline-block;
        min-width: 160px;
        margin: 0.5rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        margin-bottom: 2rem;
    }
}

        /* Blog Styles */
        .blog-header {
            background-color: var(--light-bg);
            padding: 120px 0 60px;
            text-align: center;
        }
        
        .blog-title {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .blog-description {
            color: #666;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .blog-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
        }
        
        .blog-image {
            height: 200px;
            overflow: hidden;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .blog-content {
            padding: 20px;
        }
        
        .blog-date {
            color: #999;
            font-size: 0.8rem;
            margin-bottom: 10px;
        }
        
        .blog-card-title {
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .blog-excerpt {
            color: #666;
            margin-bottom: 15px;
        }
        
        .blog-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-bottom: 15px;
        }
        
        .blog-category {
            background-color: var(--primary-color);
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        .blog-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }
        
        .blog-link:hover {
            color: var(--secondary-color);
        }
        
        .blog-link i {
            margin-right: 5px;
        }
        
        .blog-sidebar {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }
        
        .sidebar-title {
            color: var(--secondary-color);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .sidebar-categories {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .sidebar-categories li {
            margin-bottom: 10px;
        }
        
        .sidebar-categories a {
            color: #666;
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            transition: color 0.3s ease;
        }
        
        .sidebar-categories a:hover {
            color: var(--primary-color);
        }
        
        .category-count {
            background-color: var(--light-bg);
            color: #666;
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        .recent-post {
            display: flex;
            margin-bottom: 15px;
        }
        
        .recent-post-image {
            width: 70px;
            height: 70px;
            border-radius: 5px;
            overflow: hidden;
            margin-left: 10px;
        }
        
        .recent-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .recent-post-content {
            flex: 1;
        }
        
        .recent-post-title {
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        
        .recent-post-title a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .recent-post-date {
            color: #999;
            font-size: 0.8rem;
        }
        
        .pagination {
            margin-top: 30px;
            justify-content: center;
        }
        
        .page-link {
            color: var(--primary-color);
            border-color: #eee;
            margin: 0 5px;
            border-radius: 5px;
        }
        
        .page-link:hover, .page-item.active .page-link {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }

        .about-section {
            background-color: #f8f9fa;
        }
        
        .about-section .section-title {
            color: #333;
            font-weight: bold;
        }
        .primary-color  {
            color:var(--primary-color);
        }
        .about-features .feature-item {
            font-size: 1.1rem;
        }
        
        .about-features .text-primary {
            color:var(--primary-color);
        }
        .about-section img {
            transition: transform 0.3s ease;
        }
        
        .about-section img:hover {
            transform: scale(1.05);
        }

        .contact-section {
            background-color: #f8f9fa;
        }
        
        .contact-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
        }
        
        .contact-icon {
            color: var(--primary-color);
        }
        
        .contact-form .form-control {
            padding: 0.8rem;
            border: 1px solid #dee2e6;
            border-radius: 5px;
        }
        
        .contact-form .form-control:focus {
            border-color:var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.25);
        }
        
        .contact-form textarea {
            resize: none;
        }
        
        .contact-form .btn-primary {
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 5px;
        }