/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

body {
    line-height: 1.5;
    color: #333;
    background-color: #f8f9fa;
    font-family: Almarai;
}

card bg-light {
    margin-top: 4rem;
    margin-bottom: 4rem;
    border: black;
    border-style: solid;
    border-width: thin;
}
.next-steps mb-5 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.card-body mb-5 {
    margin-top: 2.1rem;
    margin-bottom: 3.8rem;
}
/* Container and Grid System */
.container-fluid {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}

.col-12, .col-md-6, .col-md-8, .col-md-4 {
    position: relative;
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-8 {
        flex: 0 0 66.6667%;
        max-width: 66.6667%;
    }
}

/* Spacing Utilities */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem;
}
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.me-1 { margin-left: 0.25rem !important; } /* RTL */
.me-2 { margin-left: 0.5rem !important; } /* RTL */
.me-3 { margin-left: 1rem !important; } /* RTL */

/* Card Styles */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.5rem;
}

.card-header {
    padding: 1rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem;
}

.border-0 {
    border: 0 !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075) !important;
}

.bg-transparent {
    background-color: transparent !important;
}

/* Typography */
h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.2;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

.fw-bold {
    font-weight: 700 !important;
}

.text-muted {
    color: #6c757d !important;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.small {
    font-size: 0.875em;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.375rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-primary {
    color: #fff;
    background-color: #7E57C2;
    border-color: #7E57C2;
}

.btn-primary:hover {
    background-color: #673AB7;
    border-color: #673AB7;
}

.btn-outline-primary {
    color: #7E57C2;
    border-color: #7E57C2;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #7E57C2;
    border-color: #7E57C2;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
}

/* Progress Bar */
.progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: 0.75rem;
    background-color: #e9ecef;
    border-radius: 0.375rem;
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #0d6efd;
    transition: width .6s ease;
}

.bg-success {
    background-color: #4bc959 !important;
}

/* List Group */
.list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 0.375rem;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125);
}

.list-group-flush .list-group-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.ps-0 {
    padding-right: 0 !important; /* RTL */
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
}

.bg-primary {
    background-color: #7E57C2 !important;
}

.fs-6 {
    font-size: 1rem !important;
}

/* Display Utilities */
.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-center {
    justify-content: center !important;
}

.text-center {
    text-align: center !important;
}

.w-100 {
    width: 100% !important;
}

/* Colors and Text Utilities */
.text-success {
    color: #4bc959 !important;
}

/* Icons */
[class^="bi-"]::before {
    vertical-align: -0.125em;
}

:root {
    --primary-color: #6933AA;
    --primary-dark: #45246E;
    --primary-light: #9F6CFF;
    --white: #FFFFFF;
    --text-on-primary: #FFFFFF;
    --secondary-color: #ff9f56;
    --accent-color: #56c4ff;
    --text-dark: #1e293b;
    --text-light: #f8fafc;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --container-width: 1200px;
}

html, body {
    font-family: 'Almarai', sans-serif;
    direction: rtl;
    text-align: right;
    color: var(--text-dark);
    background-color: var(--gray-50);
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Button styles */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0px;
    height: 0px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.btn:hover:before {
    width: 60px;
    height: 60px;
}

.btn:focus, .btn:hover {
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Fix navbar buttons to not move on hover */
.navbar-auth .btn:hover,
.navbar-auth .btn:focus {
    transform: none !important;
    box-shadow: none !important;
}

.btn-sm {
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    color: var(--text-light);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    color: var(--text-light);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover, .btn-secondary:focus {
    filter: brightness(0.9);
}

.btn-outline-primary {
    color: var(--primary-color);
    background-color: transparent;
    border-color: var(--primary-color);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    color: var(--text-light);
    background-color: var(--primary-color);
}

.btn-outline-light {
    color: var(--text-light);
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover, .btn-outline-light:focus {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-link {
    font-weight: 400;
    color: var(--primary-color);
    background-color: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.btn-link:hover {
    text-decoration: underline;
    box-shadow: none;
    transform: none;
}

/* Card styles */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-body {
    flex: 1 1 auto;
    padding: 1.5rem;
}

.card-title {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Header / Navbar */
.navbar {
    background-color: #6933AA;
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.navbar-brand:hover {
    color: var(--text-light);
    opacity: 0.9;
}

.brand-logo {
    height: 45px;
    width: auto;
    margin-left: 0.75rem;
    object-fit: contain;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 0.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    font-weight: 500;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--text-light);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

.nav-link:hover:after, .nav-link.active:after {
    width: 80%;
}

.navbar-auth {
    display: flex;
    align-items: center;
}

.navbar-auth .btn {
    margin-right: 0.5rem;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero section */
.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--text-light);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.hero-shape {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.hero-shape-1 {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--text-light), rgba(255,255,255,0.8));
    border-radius: 50%;
    animation: floatAnimation1 8s ease-in-out infinite;
}

.hero-shape-2 {
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, var(--text-light), rgba(255,255,255,0.6));
    border-radius: 50%;
    animation: floatAnimation2 10s ease-in-out infinite;
}

.hero-shape-3 {
    top: 20%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--text-light), rgba(255,255,255,0.7));
    border-radius: 50%;
    animation: floatAnimation3 12s ease-in-out infinite;
}

/* Floating animations for hero shapes */
@keyframes floatAnimation1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(20px, -30px) rotate(5deg) scale(1.05);
    }
    50% {
        transform: translate(-15px, -50px) rotate(-3deg) scale(0.95);
    }
    75% {
        transform: translate(30px, -20px) rotate(7deg) scale(1.02);
    }
}

@keyframes floatAnimation2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    30% {
        transform: translate(-25px, 20px) rotate(-8deg) scale(1.08);
    }
    60% {
        transform: translate(40px, -10px) rotate(4deg) scale(0.92);
    }
    85% {
        transform: translate(-10px, 35px) rotate(-5deg) scale(1.03);
    }
}

@keyframes floatAnimation3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    20% {
        transform: translate(15px, 25px) rotate(6deg) scale(1.06);
    }
    40% {
        transform: translate(-30px, -15px) rotate(-9deg) scale(0.94);
    }
    70% {
        transform: translate(25px, -40px) rotate(3deg) scale(1.01);
    }
}

/* Features section */
.features-section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray-600);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 1rem auto 0;
}

.feature-card {
    height: 100%;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
    border-radius: 1rem;
    background-color: white;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 32px;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: var(--shadow-md);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.feature-description {
    color: var(--gray-600);
    margin-bottom: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    text-align: right;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.feature-list li i {
    color: var(--primary-color);
    margin-left: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1.125rem;
}

/* About section */
.about-section {
    padding: 6rem 0;
    background-color: var(--gray-50);
    position: relative;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    max-width: 100%;
}

/* Commenting out the purple border
.about-image:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 1rem;
    top: 20px;
    left: 20px;
    z-index: -1;
}
*/

.about-content {
    padding: 2rem 0;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.about-list li i {
    width: 30px;
    height: 30px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-left: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    text-align: center;
    position: relative;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.cta-btn:hover {
    background-color: var(--gray-100);
    color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background-color: #45246E;
    color: var(--white);
    padding: 1.5rem 0 0.75rem;
    position: relative;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.footer-logo img {
    height: 38px;
    width: auto;
    margin-left: 0.5rem;
    object-fit: contain;
}

.footer-logo h3 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-size: 0.9rem;
}

.footer-title {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
}

.footer-title:after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--primary-light);
    bottom: -3px;
    right: 0;
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.3rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: block;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-light);
    transform: translateX(-3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--primary-light);
    margin-left: 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.85rem;
}

.social-icons {
    display: flex;
    margin-top: 0.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    margin-left: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.social-icons a:hover {
    background-color: var(--primary-light);
    transform: translateY(-5px);
}

/* Payment Methods in Footer */
.payment-methods {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-title {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Almarai', sans-serif;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icon {
    height: 42px;
    width: auto;
    max-width: 70px;
    object-fit: contain;
    background-color: white;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    filter: grayscale(20%);
}

.payment-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    filter: grayscale(0%);
    background-color: #f8f9fa;
}

.payment-icon-instapay {
    height: 40px;
    padding: 6px 10px;
    background-color: white;
}

/* Mobile responsive for payment methods */
@media (max-width: 575.98px) {
    .payment-methods {
        margin-top: 2rem;
        padding: 1.25rem 0.75rem;
    }
    
    .payment-icons {
        gap: 12px;
    }
    
    .payment-icon {
        height: 38px;
        max-width: 60px;
        padding: 6px 10px;
    }
    
    .payment-icon-instapay {
        height: 36px;
        padding: 5px 8px;
    }
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.copyright {
    color: #FFFFFF;
    font-size: 0.875rem;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideRight {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideLeft {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    animation: slideUp 1s ease forwards;
}

.animate-slide-right {
    animation: slideRight 1s ease forwards;
}

.animate-slide-left {
    animation: slideLeft 1s ease forwards;
}

.animate-zoom-in {
    animation: zoomIn 1s ease forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }

/* Responsive styles */
@media (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .container {
        max-width: 720px;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .navbar-toggler {
        display: block;
    }
    
    .navbar-nav.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-dark);
        padding: 1rem 0;
        box-shadow: var(--shadow-md);
    }
    
    .navbar-nav.show .nav-item {
        margin: 0;
    }
    
    .navbar-nav.show .nav-link {
        padding: 0.75rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-image:after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .container {
        max-width: 540px;
    }
    
    .hero {
        text-align: center;
        padding: 7rem 0 4rem;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .about-content {
        margin-top: 3rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-widget {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575.98px) {
    .container {
        width: 100%;
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

/* User Dropdown Styles */
.user-dropdown {
    position: relative;
}

.user-dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.2s;
}

.user-dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #5E35B1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-left: 0.5rem;
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 200px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    display: none;
    z-index: 1000;
    animation: fadeInDown 0.3s ease-in-out;
}

.user-dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
}

.dropdown-item i {
    margin-left: 0.75rem;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.dropdown-divider {
    height: 1px;
    background-color: #eeeeee;
    margin: 0.5rem 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 