@charset "UTF-8";
	.text-mark {
        background: rgba(0, 0, 0, 0.7);
        color: #fff;
        padding: 5px 10px;
        border-radius: 5px;
        display: inline-block;
    }

    .carousel-item .btn {
        background-color: #007bff;
        border: none;
    }

    .carousel-item .btn:hover {
        background-color: #0056b3;
    }
	
		body {
			font-family: Arial, sans-serif;
			
		}

		.hero-section {
			background: linear-gradient(135deg, #6c757d, #343a40);
			color: white;
			text-align: center;
		}

		.features-section, .section {
			padding: 50px 0;
		}

		.feature-item, .section {
			text-align: center;
			margin-bottom: 30px;
		}

		.section {
			background: #f8f9fa;
		}

		.section:nth-of-type(even) {
			background: #e9ecef;
		}

		.footer {
			background: #343a40;
			color: white;
			padding: 40px 0;
		}

		.footer a {
			color: #adb5bd;
			text-decoration: none;
		}

		.footer a:hover {
			text-decoration: underline;
		}

		.footer .social-icons a {
			font-size: 20px;
			margin: 0 10px;
		}

		.pricing-card {
			border: 1px solid #dee2e6;
			border-radius: 8px;
			padding: 10px;
			text-align: center;
			transition: transform 0.3s;
		}

		.pricing-card:hover {
			transform: translateY(-10px);
			box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
		}
		
		.pricing-plan-content {
			text-align: left;
			list-style-type: disc;
			list-style-position: inside;
			padding-right: 0;
			padding-left: 0;
			margin-right: -10px;
		}

		#scrollToTopBtn {
			position: fixed;
			bottom: 40px;
			right: 40px;
			display: none;
			z-index: 1000;
			padding: 10px 15px;
			font-size: 20px;
			border-radius: 50%;
			cursor: pointer;
		}

		.footer-logo {
			max-height: 100%;
			width: auto;
		}

		.footer .logo-column {
			contain: size;
			container-type: size;
			display: flex;
			justify-content: center;
			align-items: center;
		}

		.footer .row {
			display: flex;
			align-items: stretch;
		}
		
		 .footer .fab {
			font-size: 24px;
			color: #adb5bd;
			transition: color 0.3s;
		}

		.footer .fab:hover {
			color: #ffffff;
		}

		.footer .fab {
			margin-left: 15px;
		}

		.footer .fab:first-child {
			margin-right: 0;
		}
		
.app-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.app-image {
    max-height: 500px;
    min-width: 250px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.store-badge img {
    height: 60px; 
    width: auto;
    display: block; 
    transition: transform 0.3s; 
    margin: 0 15px; 
}

.store-badge img:hover {
    transform: scale(1.05);
}

.app-section h2 {
    font-size: 2rem;
    color: #343a40;
}

.app-section p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .app-image {
        max-width: 70%;
    }

    .store-badge img {
		height: 40px;
        max-width: 140px;
    }
}

.hero-section {
    margin-bottom: 50px;
    position: relative;
}

.hero-section .carousel-item {
    height: 500px;
    background-size: cover;
    background-position: center;
}

.hero-section .carousel-inner {
    height: 100%;
}

.portfolio-card {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-item {
	transition: all 0.6s ease;
	text-align: center;
	background-color: white;
	border: 2px solid white;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-item.in-view {
    opacity: 1;
    transform: translateX(0);
}

.portfolio-card.slide-in-left {
    transform: translateX(-100px);
}

.portfolio-card.in-view {
    opacity: 1;
    transform: translateX(0);
}

@media (min-width: 768px) {
    #contact .row {
        display: flex;
        flex-wrap: nowrap;
    }
    #contact .col-md-6 {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    #contact .row {
        display: flex;
        flex-direction: column;
    }
    #contact .col-md-6.order-md-1 > div:nth-child(1) {
        order: 1;
    }
    #contact .col-md-6.order-md-1 > div:nth-child(2) {
        order: 2;
    }
    #contact .col-md-6.order-md-1 > div:nth-child(3) {
        order: 3;
    }
    #contact .col-md-6.order-md-1 > div:nth-child(4) {
        order: 4;
    }
    #contact .col-md-6.order-md-2 > div:nth-child(1) {
        order: 5;
    }
    #contact .col-md-6.order-md-2 > div:nth-child(2) {
        order: 6;
    }
}

		@media (min-width: 768px) {
			.app-section h2,
			.app-section p {
				text-align-last: left;
			}
		}

		.navbar .dropdown-menu {
			min-width: 120px;
		}

		.navbar .dropdown-menu a {
			display: flex;
			align-items: center;
			gap: 8px;
		}

#contact .form-label {
    text-align: left;
}

.features-item.in-view, .portfolio-card.in-view {
			opacity: 1;
			transform: translateX(0); 
		}

.app-slider-container {
    width: 250px;
    max-height: 500px;
    height: auto;
	overflow: hidden;
    <!-- position: relative; -->
    border: 2px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.app-slider {
    display: flex;
    width: 800%;
    animation: appSlideAnimation 40s infinite;
}

.app-slide {
    width: 12.5%;
	height: auto;
	flex-shrink: 0;
    object-fit: cover;
}

/* Animation for sliding effect */
@keyframes appSlideAnimation {
    0% { transform: translateX(0); }
	12.5% { transform: translateX(-12.5%); }
	25% { transform: translateX(-25%); }
	37.5% { transform: translateX(-37.5%); }  
	50% { transform: translateX(-50%); }
	62.5% { transform: translateX(-62.5%); }
	75% { transform: translateX(-75%); } 
	87.5% { transform: translateX(-87.5%); }
	100% { transform: translateX(0); }  
}

#emailNotification {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    z-index: 1000;
    max-width: 80%;
    text-align: center;
}

#emailNotification.success {
    background-color: #32d157; /* Green for success */
}

#emailNotification.error {
    background-color: #de0126; /* Red for error */
}
