.services-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.services-title {
    text-align: center;
    margin-bottom: 60px;
}

.services-title h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}
.highlighted-plan .starting-from{
    color: white;
}
.highlighted-plan .pricing-icon{
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-box h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-list li {
    margin: 10px 0;
    color: #555;
    font-size: 1rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: auto;
    transition: all 0.3s ease;
}

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

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Portfolio Section Styles */
.portfolio-filters {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    margin: 0 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

.portfolio-item {
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-card img {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.portfolio-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.85);
    color: white;
    padding: 20px;
    transition: bottom 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    bottom: 0;
}

.portfolio-overlay h4 {
    color: white;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    font-size: 14px;
    margin-bottom: 15px;
}

.app-store-links a {
    color: white;
    font-size: 24px;
    margin-right: 15px;
}

.custom-btn-sm {
    padding: 5px 15px;
    font-size: 14px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-btn-sm:hover {
    background: white;
    color: var(--primary-color);
}

/* Statistics Section Styles */
.statistics-section {
    background: var(--primary-color);
    /* Matching your site's primary color instead of gradient */
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    /* Subtle overlay to match your site's style */
}

.statistics-section .container {
    position: relative;
    z-index: 2;
}

.stat-box {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    /* Matching your site's border radius */
    backdrop-filter: blur(10px);
    margin: 15px 0;
    transition: all 0.4s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--white-color);
    /* Matching your site's text color */
    opacity: 0.9;
}

.stat-number {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--title-font-family);
    /* Using your site's font */
    color: var(--white-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.stat-details {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 10px;
    line-height: 1.6;
    font-weight: 300;
}

.statistics-section .section-title {
    color: var(--white-color);
    margin-bottom: 2rem;
}

.statistics-section .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

@media (max-width: 991px) {
    .stat-box {
        min-height: 250px;
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 3.2rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .stat-box {
        min-height: 220px;
        margin: 10px 0;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-details {
        font-size: 0.9rem;
    }
}

/* Pricing Section Styles */
.pricing-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    position: relative;
}

.package-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0 15px;
    margin: 0 auto;
    max-width: 100%;
}

.selector-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: transparent;
    color: #666;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 14px;
}

@media (max-width: 768px) {
    .package-selector {
        padding: 0 20px;
        gap: 8px;
    }

    .selector-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .package-selector {
        gap: 6px;
    }

    .selector-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
}

.package-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.selector-btn {
    padding: 12px 25px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.selector-btn.active, 
.selector-btn:hover {
    background: var(--primary-color);
    color: white;
}

.pricing-thumb {
    background: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #ff6b6b;
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.price {
    margin: 20px 0;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.custom-quote {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 12px 0;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li.not-included {
    color: #999;
}

.pricing-features i {
    font-size: 1rem;
}

.pricing-features .fa-check {
    color: #2ecc71;
}

.pricing-features .fa-times {
    color: #e74c3c;
}

.pricing-action {
    text-align: center;
}

.delivery-time {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

.highlighted-plan {
    background: linear-gradient(145deg, var(--primary-color), #4a148c);
    transform: scale(1.05);
    border: none;
}

.highlighted-plan .pricing-features li,
.highlighted-plan .amount,
.highlighted-plan .period,
.highlighted-plan h3,
.highlighted-plan .delivery-time {
    color: white;
}

.highlighted-plan .pricing-features .fa-check {
    color: #98fb98;
}

@media (max-width: 991px) {
    .pricing-thumb {
        margin-bottom: 30px;
    }
    
    .highlighted-plan {
        transform: scale(1);
    }
}

/* ...existing code... */

.starting-from {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.package-group {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-group.active {
    display: block;
    opacity: 1;
}

/* ...existing code... */

/* About Section Styles */
.about-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.about-section .services-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-section p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.about-section h6 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 20px;
}

.about-section .about-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ...existing code... */

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

/* Enhanced styles for the custom select dropdown */
.custom-form .form-group select.custom-select {
    appearance: none;
    background-image: url('../images/custom-arrow.svg');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    background-color: white; /* Set background color to white */
}

.custom-form .form-group select.custom-select:hover {
    background-color: #e9e9e9;
}

.custom-form .form-group select.custom-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(33, 150, 243, 0.5);
    outline: none;
}

/* Add a smooth transition for the dropdown */
.custom-form .form-group select.custom-select {
    transition: all 0.3s ease;
}

/* Optional: Add a custom arrow using pseudo-element */
.custom-form .form-group.custom-select::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 0; 
    height: 0; 
    pointer-events: none;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #333;
    transform: translateY(-50%);
}

/* ...existing code... */

/* Navbar Toggler Styles */


.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}



@media (max-width: 991px) {
    .navbar-collapse.show {
        background-color: #402665;
        padding: 1rem;
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar-collapse {
        transition: all 0.3s ease;
    }

    /* Add these new styles */
    .custom-btn.mobile-only {
        display: block;
        margin: 15px auto 5px;
        width: fit-content;
        background-color: transparent;
        border: 2px solid white;
    }

    .custom-btn.mobile-only:hover {
        background-color: white;
        color: var(--primary-color);
    }
}

.nav-lang {
    margin-right: 20px;
    color:white
}
.nav-lang:hover {
    color: var(--primary-color);
}