/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #dc8e11ff;
    --secondary: #2196F3;
    --dark: #1a1a1a;
    --gray: #666;
    --light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --radius: 10px;
    --transition: all 0.3s ease;
    --vh: 1vh;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.header {
    background: rgb(124 124 124 / 0%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgb(128 128 128 / 17%);
}

.header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgb(0 0 0 / 1%);
}

.navbar {
    padding: 15px 0;
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 2rem;
}

.nav-left {
    justify-self: start;
}

.nav-logo {
    display: flex;
	width: 150px;
}

.nav-logo img{
	max-width: 100%;
}

.nav-right {
    justify-self: end;
}

.nav-logo h2 {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 12px;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: block;
	text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: #565656 !important;
}

.nav-link:hover::after {
    width: 100%;
}

.header.scrolled .nav-link {
    color: var(--dark) !important;
    text-shadow: none;
}

.header.scrolled .nav-link:hover {
    color: var(--primary) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    grid-column: 3;
    justify-self: end;
}

.bar {
    width: 25px;
    height: 2px;
    background: rgb(0 0 0 / 90%);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.header.scrolled .bar {
    background: var(--dark);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
}

.hero-slider {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100vh;
    min-height: 700px;
}

.hero-slider .slide {
    height: 100vh;
    min-height: 700px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
	background-repeat: no-repeat !important;
    background-size: cover !important;
}

.hero-slider .slide::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-text {
    position: absolute;
    bottom: 80px;
    left: 50px;
    color: white;
    z-index: 2;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.5;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    box-shadow: var(--shadow);
	filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.about-text h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
	text-transform: uppercase;
}

.about-text p {
    font-size: 13px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 80px 0;
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ===== APP TOUR SECTION ===== */
.app-tour-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.app-tour-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.app-tour-container {
    margin: 0 auto;
    padding: 0 20px;
}

.app-tour-header {
    text-align: center;
    margin-bottom: 3rem;
}

.app-tour-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-tour-header p {
    font-size: 1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.app-tour-grid {
    position: relative;
}

.app-tour-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.app-tour-row.app-tour-reverse {
    flex-direction: row-reverse;
}

.app-tour-row.app-tour-final-row {
    margin-bottom: 0;
}

.app-tour-item {
    position: relative;
    flex: 0 0 auto;
}

.app-tour-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(76, 175, 80, 0.08);
    width: 220px;
}

.app-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(76, 175, 80, 0.2);
}

.app-tour-image {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.app-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.app-tour-card:hover .app-tour-image img {
    transform: scale(1.08);
}

.app-tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9), rgba(56, 142, 60, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.app-tour-card:hover .app-tour-overlay {
    opacity: 1;
}

.app-tour-overlay i {
    font-size: 2rem;
    color: white;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.app-tour-card:hover .app-tour-overlay i {
    transform: scale(1);
}

.app-tour-content {
    padding: 1rem;
    text-align: center;
}

.app-tour-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.app-tour-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    border: 3px solid white;
    animation: app-tour-pulse 2.5s infinite;
    flex-shrink: 0;
    position: relative;
}

.app-tour-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.2);
    transform: translate(-50%, -50%) scale(0);
    animation: app-tour-ripple 2.5s infinite;
}

.app-tour-vertical-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
    border: 4px solid white;
    margin: 1.5rem auto;
    animation: app-tour-bounce 2s infinite;
    position: relative;
}

.app-tour-vertical-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 2px solid rgba(76, 175, 80, 0.3);
    transform: translate(-50%, -50%);
    animation: app-tour-expand 2s infinite;
}

@keyframes app-tour-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(76, 175, 80, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    }
}

@keyframes app-tour-ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes app-tour-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes app-tour-expand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.app-tour-success {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-tour-success:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(76, 175, 80, 0.25);
}

.app-tour-success-content {
    padding: 1rem;
    text-align: center;
}

.app-tour-success-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.app-tour-success-icon i {
    font-size: 1.5rem;
    color: white;
    animation: app-tour-heartbeat 2s ease-in-out infinite;
}

.app-tour-success-content h3 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.app-tour-rings {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    animation: app-tour-rotate 4s linear infinite;
}

@keyframes app-tour-heartbeat {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes app-tour-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .app-tour-row {
        gap: 0.8rem;
    }

    .app-tour-card {
        width: 200px;
    }

    .app-tour-content {
        padding: 0.8rem;
    }

    .app-tour-content h3 {
        font-size: 0.9rem;
    }

    .app-tour-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .app-tour-vertical-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .app-tour-section {
        padding: 50px 0;
    }

    .app-tour-container {
        padding: 0 15px;
    }

    .app-tour-header {
        margin-bottom: 2.5rem;
    }

    .app-tour-header h2 {
        font-size: 1.8rem;
    }

    .app-tour-header p {
        font-size: 0.95rem;
    }

    .app-tour-row {
        gap: 1.5rem;
        align-items: center;
        margin-bottom: 2rem;
    }

    .app-tour-arrow {
        transform: rotate(90deg);
    }

    .app-tour-arrow.app-tour-arrow-reverse {
        transform: rotate(90deg);
    }

    .app-tour-vertical-arrow {
        margin: 1rem auto;
    }

    .app-tour-card {
        width: 250px;
    }

    .app-tour-content {
        padding: 1rem;
    }
	
	.app-tour-row {
		flex-wrap: initial;
		overflow: auto;
	}

    .app-tour-content h3 {
        font-size: 1rem;
    }

    .app-tour-success-content h3 {
        font-size: 1rem;
    }

    .app-tour-success-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }

    .app-tour-success-icon i {
        font-size: 1.2rem;
    }

    .app-tour-rings {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .app-tour-section {
        padding: 40px 0;
    }
	
	.app-tour-row {
        flex-direction: column;
    }

    .app-tour-row.app-tour-reverse {
        flex-direction: column;
    }

    .app-tour-container {
        padding: 0 10px;
    }

    .app-tour-header h2 {
        font-size: 1.6rem;
    }

    .app-tour-header p {
        font-size: 0.9rem;
    }

    .app-tour-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .app-tour-content {
        padding: 1rem;
    }
	
	.app-tour-row.app-tour-reverse {
        flex-direction: column;
    }

    .app-tour-content h3 {
        font-size: 1rem;
    }

    .app-tour-success-content {
        padding: 1rem;
    }

    .app-tour-success-content h3 {
        font-size: 1rem;
    }

    .app-tour-success-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.6rem;
    }

    .app-tour-success-icon i {
        font-size: 1.3rem;
    }

    .app-tour-rings {
        font-size: 1.3rem;
    }
}

@media (max-width: 360px) {
    .app-tour-header h2 {
        font-size: 1.4rem;
    }

    .app-tour-content {
        padding: 0.8rem;
    }

    .app-tour-content h3 {
        font-size: 0.9rem;
    }

    .app-tour-success-content h3 {
        font-size: 0.9rem;
    }

    .app-tour-rings {
        font-size: 1.1rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;

}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
	font-size: 12px;
}

.footer-section ul {
    list-style: none;
	font-size: 12px;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
	font-size: 12px;
}

.contact-item i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
	font-size: 11px;
}

@media (max-width: 600px) {
  .step-image img {
	  height: 550px;
  }
  
  .step-item .placeholder-text {
	left: auto;
    transform: none;
  }
}


/* ===== BXSLIDER CUSTOM STYLES ===== */
.bx-wrapper {
    margin-bottom: 0 !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
}

.bx-wrapper .bx-pager {
    bottom: 30px !important;
    text-align: center;
}

.bx-wrapper .bx-pager .bx-pager-item a {
    width: 12px !important;
    height: 12px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 50% !important;
    transition: var(--transition) !important;
}

.bx-wrapper .bx-pager .bx-pager-item a:hover,
.bx-wrapper .bx-pager .bx-pager-item a.active {
    background: #ef8e0efa !important;
    transform: scale(1.3);
}

.bx-wrapper .bx-controls-direction a {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 60px !important;
    height: 60px !important;
    background: rgb(243 165 44 / 64%) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 1.2rem !important;
    backdrop-filter: blur(10px) !important;
    transition: var(--transition) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    text-indent: 0 !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    z-index: 100 !important;
}

.bx-wrapper .bx-controls-direction a:hover {
    background: rgb(243 165 44 / 34%) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.bx-wrapper .bx-prev {
    left: 30px !important;
}

.bx-wrapper .bx-prev::before {
    content: '\f053' !important;
}

.bx-wrapper .bx-next {
    right: 30px !important;
}

.bx-wrapper .bx-next::before {
    content: '\f054' !important;
}

@media (max-width: 767px) {
  .bx-caption {
    display: none !important;
  }
}


/* ===== SIMPLE ANIMATIONS ===== */
.feature-card,
.gallery-item,
.about-image,
.about-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.feature-card.animate,
.gallery-item.animate,
.about-image.animate,
.about-text.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE NAVIGATION ===== */
.nav-left,
.nav-right {
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-left,
    .nav-right {
        position: fixed;
        top: 50px;
        left: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
        z-index: 999;
        transition: var(--transition);
    }

    .nav-left.mobile-active,
    .nav-right.mobile-active {
        left: 0;
    }

    .nav-right.mobile-active {
        top: calc(90px + 200px); /* Position below nav-left */
    }

    .nav-left .nav-link,
    .nav-right .nav-link {
        color: var(--dark) !important;
        font-size: 1.2rem;
        padding: 5px 0;
        text-shadow: none;
        display: block;
    }

    .nav-left .nav-link:hover,
    .nav-right .nav-link:hover {
        color: var(--primary) !important;
    }
}

/* ===== NAVIGATION VISIBILITY FIX ===== */
.nav-left .nav-link,
.nav-right .nav-link {
    opacity: 1 !important;
    visibility: visible !important;
}


.header.scrolled .nav-link {
    color: var(--dark) !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        grid-template-columns: 1fr auto;
        gap: 1rem;
    }

    .nav-logo {
        justify-self: start;
    }

    .nav-left,
    .nav-right {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background: var(--primary);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background: var(--primary);
    }

    .hero {
        height: calc(var(--vh, 1vh) * 100);
        min-height: calc(var(--vh, 1vh) * 100);
    }

    .hero-slider,
    .hero-slider .slide {
        height: calc(var(--vh, 1vh) * 100);
        min-height: calc(var(--vh, 1vh) * 100);
    }

    .hero-text {
        bottom: 40px;
        left: 20px;
        right: 20px;
        max-width: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .about-content,
    .tour-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .bx-wrapper .bx-controls-direction a {
        width: 50px !important;
        height: 50px !important;
    }

    .bx-wrapper .bx-prev {
        left: 15px !important;
    }

    .bx-wrapper .bx-next {
        right: 15px !important;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text {
        bottom: 100px;
        left: 15px;
        right: 15px;
    }

    .section-header h2 {
        font-size: 2rem;
    }
	
	.step-content .step-title{
		font-size: 20px;
	}
	
	#download {
		padding: 10px;
	}
	
	.step-content .step-description {
		font-size: 14px;
	}
	
	.contact-info {
		align-items: center;
	}

    .about-text h2 {
        font-size: 20px;
    }

    .bx-wrapper .bx-controls-direction a {
        width: 40px !important;
        height: 40px !important;
    }

    .bx-wrapper .bx-prev {
        left: 10px !important;
    }

    .bx-wrapper .bx-next {
        right: 10px !important;
    }
}
.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-section {
            background: linear-gradient(135deg, #de8c17 0%, #f1bf24 100%);
            color: white;
            padding: 10px 0;
            text-align: center;
			margin-top: 30px;
        }

        .hero-section h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
            margin-top: 0;
        }

        .hero-section p {
            font-size: 1.3rem;
            opacity: 0.9;
            margin: 0 auto;
        }

        .guide-section {
            padding: 40px 10px;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 30px;
        }

        .steps-container {
            display: grid;
            gap: 20px;
            margin-bottom: 40px;
        }

        .step-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            align-items: center;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .step-item:nth-child(even) {
            direction: rtl;
        }

        .step-item:nth-child(even) .step-content {
            direction: ltr;
        }

        .step-content {
            padding: 20px;
        }

        .step-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #e4910a, #dc8e11ff);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .step-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        .step-description {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .step-details {
            background: white;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #e4910a;
        }

        .step-details li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
            color: #555;
             text-align: left;
             font-size: 13px;
			 list-style: none;
        }

        .step-details li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: #e4910a;
            font-weight: bold;
        }

        .step-image {
            position: relative;
            overflow: hidden;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
		
		.step-image img{
			height: 390px;
		}

        .placeholder-text {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .payment-section {
            background: #f8f9fa;
            padding: 10px 0;
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .payment-method {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .payment-method:hover {
            transform: translateY(-5px);
        }

        .payment-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #e4910a;
        }

        .payment-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .payment-description {
            color: #666;
            line-height: 1.6;
        }

        .highlight-box {
            background: linear-gradient(135deg, #e4910a, #dc8e11ff);
            color: white;
            padding: 10px;
            border-radius: 15px;
            text-align: center;
        }

        .highlight-box h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .highlight-box p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Download Section Styles */
        .download-section {
            padding: 20px 10px;
        }

        .download-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        .download-content h2 {
            font-size: 30px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }

        .download-content p {
            font-size: 20px;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .download-buttons {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }

        .download-btn {
            display: flex;
            align-items: center;
            background: #333;
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .download-btn:hover {
            background: #555;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            color: white;
            text-decoration: none;
        }

        .download-btn.playstore {
            background: linear-gradient(135deg, #e4910a, #dc8e11ff);
        }

        .download-btn.playstore:hover {
            background: linear-gradient(135deg, #dc8e11ff, #e4910a);
        }

        .download-btn.apk {
            background: linear-gradient(135deg, #2196F3, #1976D2);
        }

        .download-btn.apk:hover {
            background: linear-gradient(135deg, #1976D2, #2196F3);
        }

        .download-icon {
            font-size: 2rem;
            margin-right: 15px;
        }

        .download-text {
            display: flex;
            flex-direction: column;
        }

        .download-text .main-text {
            font-size: 1.1rem;
            font-weight: 600;
        }

        .download-text .sub-text {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .qr-section {
            text-align: center;
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .qr-code {
            width: 200px;
            height: 200px;
            background: #f0f0f0;
            border: 2px dashed #ccc;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.1rem;
            color: #666;
            text-align: center;
        }

        .qr-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .qr-description {
            color: #666;
            font-size: 1rem;
            line-height: 1.5;
        }

        .app-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .feature-badge {
            background: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .feature-badge-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            color: #e4910a;
        }

        .feature-badge-text {
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
        }

        @media (max-width: 768px) {

            .download-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
			
			.download-section{
				padding: 20px 0;
			}

            .download-content h2 {
                font-size: 2rem;
            }

            .app-features {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .step-item {
                grid-template-columns: 1fr;
                text-align: center;
				padding: 10px;
				background: none;
            }
			
			.payment-section {
				background: none;
				padding: 0;
			}
			
			.guide-section {
				padding: 10px 0;
			}
			
			.step-content {
				padding: 20px 0;
			}
            
            .step-item:nth-child(even) {
                direction: ltr;
            }
            
            .payment-methods {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
		
		.pricing-section {
            padding: 60px 0;
            text-align: center;
        }
		
		.plan-options {
            border-radius: 10px;
        }

        .plan-option {
            background: white;
            border-radius: 8px;
            padding: 15px 20px;
            margin-bottom: 12px;
            border: 1px solid #4CAF50;
            transition: all 0.3s ease;
        }
		
        .plan-option:last-child {
            margin-bottom: 0;
        }

        .plan-option-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 5px;
        }

        .plan-days {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
        }

        .plan-range {
            font-size: 1rem;
            font-weight: 700;
            color: #4CAF50;
            background: rgba(76, 175, 80, 0.1);
            padding: 4px 12px;
            border-radius: 20px;
        }

        .plan-option-desc {
            font-size: 0.9rem;
            color: #666;
            font-style: italic;
        }

        .pricing-section h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .pricing-section p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .pricing-card.featured {
            border: 3px solid #4CAF50;
            transform: scale(1.05);
			max-width: 100%;
			margin: auto;
			width: 40%;
        }

        .pricing-card.featured::before {
            content: "Most Popular";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: #4CAF50;
            color: white;
            padding: 10px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .plan-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
            margin-top: 20px;
        }

        .plan-price {
            font-size: 3rem;
            font-weight: 800;
            color: #4CAF50;
            margin-bottom: 10px;
        }

        .plan-currency {
            font-size: 1.5rem;
            vertical-align: top;
        }

        .plan-duration {
            color: #666;
            font-size: 1rem;
            margin-bottom: 30px;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .plan-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            color: #555;
            position: relative;
			text-align: left;
        }

        .plan-features li::before {
            content: "✓";
            left: 0;
            color: #4CAF50;
            font-weight: bold;
			padding-right: 6px;
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .cta-button {
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .cta-button:hover {
            background: linear-gradient(135deg, #45a049, #4CAF50);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
        }

 .features-section {
            padding: 80px 0;
            background: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .feature-item {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background: #f8f9fa;
            transition: transform 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #4CAF50;
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .feature-description {
            color: #666;
            line-height: 1.6;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 50px;
        }

        @media (max-width: 768px) {
			.pricing-card.featured {
				width: 100%;
			}
            .pricing-section h1 {
                font-size: 22px;
            }
			
			.pricing-section p {
				font-size: 16px;
			}
            
            .pricing-card.featured {
                transform: none;
				padding: 30px 14px;
            }
            
            .plan-price {
                font-size: 15px;
            }
			
            .plan-days {
				font-size: 15px;
			}
			
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

			.pricing-section {
				padding: 20px 0;
			}
			.section-title {
				font-size: 22px;
			}
        }