@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    background-color: #f0f2f5;
    outline: none !important;
    overflow-x: hidden;
}


.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
    padding: 0 20px;
    text-align: center;
}

a {
    text-decoration: none;
}

.header-wrapper {
    background-color: #fff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;

}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    position: relative;
    z-index: 100;
}


/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;

}


.logo-image {
    max-width: 250px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-item a {
    font-weight: 500 !important;
}





/* Navigation Styles */
.navbar {
    display: flex;
    align-items: center;
    padding: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0 !important;
}

.nav-links li a {
    color: #333;
    text-decoration: none;
    font-weight: bold !important;
    font-size: 15px;
    padding: 8px 0;
}

.nav-links li a.active {
    color: red !important;
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 20px;
    cursor: pointer;
}


.content-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.content-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 16px;
}

.content-section p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}



@media screen and (prefers-color-scheme: dark) {
    .demo-content {
        background: #1a252f;
        color: #ecf0f1;
    }
}

/* Banner CSS  */
.banner {
    padding: 60px 0;
    background-color: #e9dbf3;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin: 0px auto 20px;
    font-size: 14px;
    color: #6b46c1;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.premium-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2);
}

.premium-badge::before {
    content: "✨";
    margin-right: 8px;
    font-size: 16px;
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1f2937;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.main-title .highlight {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.main-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    border-radius: 2px;
    opacity: 0.3;
}



.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.explore_card_btn {
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #8b5cf6;
    color: white;
}

.explore_card_btn:hover {
    background-color: #E24958 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(226, 73, 88, 0.3);
    transition: all 0.3s ease;
}


.main-content {
    padding: 25px 0;
    text-align: center;
    background: #fdf1f1;
    overflow: hidden;
}

.stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 900px;
    margin: 50px auto 0;
}

.stat-card {
    background: none;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    box-shadow: none;
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.stat-card::before {
    display: none;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
    background: none;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6 0%, #6b21a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.1;
}

.stat-label {
    color: #4b5563;
    font-weight: 500;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
}

/* Floating elements animation */
.floating-element {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}



/* Hover effects for better interactivity */
.stat-card:hover .stat-number {
    animation: pulse 0.6s ease-in-out;
}



/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(139, 92, 246, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
}

/* ==================
   Categories Section
   ================== */

.categories {
    padding: 0px 0;
    margin: 20px auto 60px;
}

.categories>.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card:nth-child(5),
.category-card:nth-child(6) {
    display: none;
}

.category-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f3f4f6;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.category-card-banner {
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-card-banner i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Gradient backgrounds for banners */
.cat-1 {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.cat-2 {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
}

.cat-3 {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.cat-4 {
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
}

.cat-5 {
    background: linear-gradient(135deg, #eef2ff, #c7d2fe);
}

.cat-6 {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
}

.category-card-content {
    padding: 25px;
    text-align: left;
}

.category-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.category-card-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.category-card-header a {
    color: #9ca3af;
    font-size: 24px;
    transition: all 0.3s ease;
}

.category-card:hover .category-card-header a {
    color: #8b5cf6;
    transform: translateX(5px);
}


.category-card-content p {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 20px;
}

.category-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tag {
    font-size: 13px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 50px;
    background-color: #f3f4f6;
    color: #4b5563;
}

.tag-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Colors for tag icons */
.tag-1 {
    background: linear-gradient(135deg, #db2777, #c21a68);
}

.tag-2 {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.tag-3 {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.tag-4 {
    background: linear-gradient(135deg, #ea580c, #c2410c);
}

.tag-5 {
    background: linear-gradient(135deg, #6d28d9, #5b21b6);
}

.tag-6 {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}



/* Alphgabets Section  */

.alphabet-collection {
    border-radius: 20px;
    padding: 60px 40px 0px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #8b2635, #c62d42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.alphabet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 25px;
    margin-top: 40px;

}

.alphabet-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 15px 20px 10px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    outline: none !important;

}

.alphabet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.alphabet-card:hover::before {
    left: 100%;
}

.alphabet-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(139, 38, 53, 0.15);
}

.letter-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8b2635, #c62d42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 8px 20px rgba(139, 38, 53, 0.3);
    transition: all 0.3s ease;
}

.alphabet-card:hover .letter-box {
    transform: rotateY(180deg) scale(1.1);
    background: linear-gradient(135deg, #c62d42, #e74c3c);
}

.alphabet-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.alphabet-card p {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
    margin-bottom: 0 !important;
}

.alphabet-card:active {
    transform: translateY(-5px) scale(0.98);
}

/* Click effect */
.alphabet-card.clicked {
    animation: clickPulse 0.6s ease-out;
}
/* Loading animation for new page */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b2635, #c62d42);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 20px;
}



/* Feature Section  */


.featured-designs {
    padding: 60px 0px 25px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.designs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.design-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    cursor: pointer;
}

.design-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.design-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.design-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.design-card:hover .design-card-image img {
    transform: scale(1.05);
}

.design-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(102, 126, 234, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.design-premium {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}



.design-card-content {
    padding: 25px;
}

.design-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.design-card-header h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
}

.design-card-header i {
    font-size: 1.5rem;
    color: #bdc3c7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.design-card-header i:hover,
.design-card-header i.liked {
    color: #e74c3c;
    transform: scale(1.2);
}

.design-card-info {
    display: flex;
    gap: 20px;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.design-card-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.design-card-info span:hover {
    color: #667eea;
}

.design-card-info i {
    font-size: 1rem;
}

.view-all-btn-container {
    text-align: center;
}


/* Sitemap CSS  here */

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.sitemap-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.sitemap-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.section-title,
.main-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

.main-section-title {
    text-align: center;
}

.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.page-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: all 0.2s ease;
}

.page-link:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-link i {
    color: #6b7280;
    font-size: 1rem;
}


.pages-grid,
.letters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 1.5rem;
}

.page-link-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 18px 0;
    font-size: 0.7rem;
    font-weight: 400;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    transition: box-shadow 0.2s, background 0.2s;
    min-height: 60px;
    color: #374151;
}
.page-title-grid{
    font-size: 1.2rem;
    font-weight: 600;
}
.page-link-grid:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.letters-grid .page-link-grid {
    font-size: 1.18rem;
    font-weight: 600;
    padding: 18px 0;
    text-align: center;
}



/* Loading Animation */
.design-card.loading {
    opacity: 0;
    transform: translateY(30px);
}

.design-card.loaded {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* Category Colors */
.design-tag.visiting-cards {
    background: rgba(231, 76, 60, 0.9);
}

.design-tag.logos {
    background: rgba(52, 152, 219, 0.9);
}

.design-tag.alphabets {
    background: rgba(46, 204, 113, 0.9);
}

.design-tag.banners {
    background: rgba(155, 89, 182, 0.9);
}

.design-tag.ui-mockups {
    background: rgba(241, 196, 15, 0.9);
}

.design-tag.icons {
    background: rgba(230, 126, 34, 0.9);
}

/* Privacy Policy Page css */

.content-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Privacy Content */
.privacy-content {
    padding: 50px;
    text-align: left;
}

.privacy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-content .text-muted {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.privacy-content section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.privacy-content section:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.privacy-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.privacy-content h2::before {
    content: '';
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-right: 15px;
    border-radius: 2px;
}

.privacy-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-content ul {
    list-style: none;
    padding-left: 0;
}

.privacy-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 1rem;
}

.privacy-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #667eea;
    font-weight: bold;
    font-size: 14px;
    background: rgba(102, 126, 234, 0.1);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Information */
.privacy-content section:last-child ul li {
    padding: 12px 0;
    padding-left: 30px;
    border-bottom: 1px solid #eee;
}

.privacy-content section:last-child ul li:last-child {
    border-bottom: none;
}

.privacy-content section:last-child ul li::before {
    content: '📧';
    background: none;
    width: auto;
    height: auto;
    font-size: 16px;
}

.privacy-content section:last-child ul li:nth-child(2)::before {
    content: '📞';
}

.privacy-content section:last-child ul li:nth-child(3)::before {
    content: '📍';
}

/* Back to Home Button */
.text-center {
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Animations */


.content-section {
    animation: fadeInUp 0.8s ease-out;
}

.privacy-content section {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.privacy-content section:nth-child(1) {
    animation-delay: 0.1s;
}

.privacy-content section:nth-child(2) {
    animation-delay: 0.2s;
}

.privacy-content section:nth-child(3) {
    animation-delay: 0.3s;
}

.privacy-content section:nth-child(4) {
    animation-delay: 0.4s;
}

.privacy-content section:nth-child(5) {
    animation-delay: 0.5s;
}

.privacy-content section:nth-child(6) {
    animation-delay: 0.6s;
}

.privacy-content section:nth-child(7) {
    animation-delay: 0.7s;
}

.privacy-content section:nth-child(8) {
    animation-delay: 0.8s;
}

.privacy-content section:nth-child(9) {
    animation-delay: 0.9s;
}

.privacy-content section:nth-child(10) {
    animation-delay: 1s;
}



/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(102, 126, 234, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

/* Focus States for Accessibility */

.nav-links li a:active {
    color: #667eea;
    box-shadow: none !important;
}



/* Terms Page CSS  */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb-custom {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 700;
}

.breadcrumb-custom a:hover {
    color: white;
}

.terms-container {
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.terms-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.terms-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.last-updated {
    background: #f8fafc;
    color: #64748b;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    display: inline-block;
}

.terms-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: #fafbfc;
    border-left: 4px solid #6366f1;
    transition: all 0.3s ease;
}

.terms-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1);
}

.terms-section h2 {
    color: #6366f1;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-number {
    background: #6366f1;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.terms-section p,
.terms-section .desc {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: left;
}

.terms-section .desc {
    text-align: left;
}

.terms-section ul {
    padding-left: 0;
    list-style: none;
}

.terms-section li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #64748b;
    line-height: 1.6;
    text-align: left;
}

.terms-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.contact_info {
    text-align: left;
}

.contact_item {
    margin-bottom: 10px;
}

.contact_item i {
    font-weight: 500;
    margin-right: 10px;
}

.contact_item span {
    font-weight: 600;
    font-size: 15px;
    margin-left: 10px;
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    text-align: left;
}

.contact-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.contact-info h3 {
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-item i {
    font-size: 24px;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item div h5 {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
}

.contact-item div p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
}

.contact-form h3 {
    margin-bottom: 30px;
}

#contactForm .row .col-lg-6 {
    padding: 0 !important;
}

.row>*,
.form-label {
    padding-left: 12px !important;
    padding-right: 0px !important;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: white;
}

.content-section {
    text-align: left;
}

.content-section h1,
.content-section h2 {
    text-align: center;
}



/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* alphabets page css  */


.input-group-text {
    border: 0 !important;
    padding: 0 !important;
}

.alphabet-collection_main {
    margin-bottom: 50px;
}

.download-btn {
    background: #dc3545;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #c82333;
    transform: scale(1.05);
    box-shadow: none !important;
}

.empty-state {
    padding: 3rem 1rem;
}

.empty-state i {
    color: #ccc;
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: #666;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #999;
    margin-bottom: 1.5rem;
}


/* logo design page css  */
.card,
.alphabet-design-card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 14px;

}

.card img,
.alphabet-design-card img {
    border-radius: 14px;
}

/* Card hover for download button */
.card-image-container {
    position: relative;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black overlay */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-image-container:hover .card-overlay {
    opacity: 1;
}

.card-overlay .btn {
    margin: 0 5px;
}

.alphabet-design-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.alphabet-design-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.design-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 14px;
}

.alphabet-design-card:hover .design-overlay {
    opacity: 1;
}

.design-overlay .download-btn {
    background: #dc3545;
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.alphabet-design-card:hover .design-overlay .download-btn {
    transform: translateY(0);
    opacity: 1;
}

.design-overlay .download-btn:hover {
    background: #c82333;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}



/* Load More Button */
.hidden-logo {
    display: none;
}

.hidden-visiting-card {
    display: none;
}

.hidden-alphabet {
    display: none;
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
}

.load-more-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
}

.load-more-btn:active {
    transform: translateY(0);
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.load-more-btn:hover::before {
    left: 100%;
}

.load-more-btn.hidden {
    display: none;
}

/* Animation for newly loaded items */


.loaded-item {
    animation: fadeInUp 0.5s ease-out;
}



/* Alphabet Section Slider Styles */
.modern-slider-outer {
    background: #ffffff;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}


.section-header .slider_subtitle {
    font-size: 1rem;
    color: #555;
    max-width: 1200px;
    margin: 30px auto 0;
}

/* Slider Container */
.modern-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
}


.modern-slider {
    background: #ffffff;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

/* Viewport and Track */


.modern-slider-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
    height: 100%;
}

.modern-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Content Layout */
.slide-content {
    position: relative;
    z-index: 3;
    padding: 40px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.slide-text {
    flex: 1;
    max-width: 665px;
    color: #333;
    text-align: left;
    margin-bottom: 20px;
}

.slide-image {
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide-image img {
    width: 100%;
    max-width: 400px;
    height: 480px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.slide-text h2 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-text p {
    font-size: 0.98rem;
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.slide-meta {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.slide-meta .meta-item {
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #333;
}

.slide-meta .meta-item b {
    color: #2980b9;
}

.slide-meta .meta-item a {
    color: #000;
    font-weight: 600;
}

/* Pagination */
.slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.pagination-dot.active {
    background: #2980b9;
    box-shadow: 0 0 10px rgba(41, 128, 185, 0.3);
    border-color: rgba(41, 128, 185, 0.3);
    transform: scale(1.2);
}

.pagination-dot:hover {
    background: #bbb;
    transform: scale(1.1);
}

.pagination-dot.active:hover {
    background: #2980b9;
    transform: scale(1.2);
}

/* Slide Number */
.slide-number {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #f8f9fa;
    color: #333;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #e0e0e0;
    z-index: 10;
}


/* CTA Section Styles */
.slider-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.slider-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.slider-cta-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.slider-cta-content h5 {
    font-size: 1.4rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    background: linear-gradient(45deg, #ff5252, #e53935);
    color: #fff !important;
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Decorative Elements */
.cta-decorative-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.cta-decorative-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: -2s;
}

.cta-decorative-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: -4s;
}

.cta-decorative-element:nth-child(3) {
    width: 40px;
    height: 40px;
    bottom: 30%;
    left: 20%;
    animation-delay: -1s;
}


.faq-section {
    margin-top: 30px;
}

.faq-container {
    max-width: 1000px;
    margin: 20px auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s ease forwards;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    padding: 10px 20px;
    background: white;
    border: none;
    text-align: left;
    font-size: 19px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-question.active {
    background-color: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
}

.faq-icon {
    font-size: 30px;
    color: #6b7280;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

/* Smooth accordion animation */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    padding: 0 1rem;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1rem;
}

.faq-answer p {
    color: #4b5563;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    transition: all 0.3s ease;
    padding: 15px 5px;
}

.faq-question-text {
    flex: 1;
    margin-right: 16px;
}

/* Smooth loading animation delays */
.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.6s;
}

.faq-item:nth-child(7) {
    animation-delay: 0.7s;
}

/* Focus styles for accessibility */
.faq-question:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.faq-item:hover .faq-icon {
    color: #374151;
}

.footer-container {
    background: linear-gradient(135deg, rgb(44, 62, 80) 0%, rgb(26, 37, 47) 100%);
    width: 100%;
    padding: 40px 40px 20px;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.tagline {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.subtitle {
    font-size: 14px;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.description,
.footer_description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #6b7280;
    line-height: 1.7;
    margin: 30px auto;
    max-width: 750px;
}

.footer_description {
    color: #b6c2d1 !important;
    margin: 0;
    font-weight: 300;
    font-size: 17px;
}

.copyright {
    font-size: 14px;
    color: #cbd5e1;
}

.footer-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.separator {
    color: #64748b;
    margin: 0 4px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #cbd5e1;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 35px;
}

/* Keyframes */

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}


@keyframes clickPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(139, 38, 53, 0.3);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(139, 38, 53, 0);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design start  */
@media (max-width: 1200px) {
    .modern-slider {
        min-height: 650px;
    }

    .slide-content {
        padding: 30px 30px;
        gap: 30px;
    }

    .slide-text h2 {
        font-size: 2.2rem;
    }

    .sitemap-card {
        padding: 3.5rem;
    }
}

@media (max-width: 992px) {
    .categories {
        padding: 0 15px !important;
    }

    .slide-meta {
        margin-top: 0 !important;
        flex-wrap: wrap !important;
        border-radius: 15px !important;
        gap: 10px !important;
    }

    .slide-meta .meta-item {
        gap: 15px !important;
        border-radius: 15px !important;
    }

    .modern-slide {
        height: auto;
    }

    .slide-image img {
        margin-bottom: 0 !important;
        border: none !important;
        object-fit: cover;
    }

    .designs-grid {
        padding: 0 15px !important;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card:nth-child(5),
    .category-card:nth-child(6) {
        display: none;
    }

    .pages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
     .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Show hidden categories on smaller screens if needed */
    .category-card:nth-child(5),
    .category-card:nth-child(6) {
        display: none;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
      .categories {
        padding: 0 15px !important;
    }

    .slide-meta {
        margin-top: 0 !important;
        flex-wrap: wrap !important;
        border-radius: 15px !important;
        gap: 10px !important;
    }

    .slide-meta .meta-item {
        gap: 15px !important;
        border-radius: 15px !important;
    }

    .modern-slide {
        height: auto;
    }

    .slide-image img {
        margin-bottom: 0 !important;
        border: none !important;
    }

    .designs-grid {
        padding: 0 15px !important;
    }
}

@media (max-width: 768px) {
    .header {
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
        border: 0.5px solid #dadada;
        padding: 5px 10px !important;
    }

    .header {
        padding: 20px 15px;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        border-top: 1px solid #e9ecef;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .navbar.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        padding: 0px 0;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #dee4ea;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links li a {
        display: block;
        padding: 15px 0;
        text-align: left;
        margin-left: 20px;
    }

    .menu-btn {
        display: block;
    }
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    .logo-image {
        max-width: 200px;
        max-height: 60px;
    }

    .categories {
        padding: 0 15px !important;
    }

    .banner-img {
        width: 100% !important;
    }

    .container {
        padding: 0 15px;
    }

    .alphabet-collection {
        padding: 40px 25px;
        margin-top: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .alphabet-grid, #alphabetDesignRow {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        justify-content: center;
        margin-left: 0 !important;
        padding: 0 15px;
    }
    
    .alphabet-design-card {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .alphabet-card {
        padding: 15px 10px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        background: white;
        transition: all 0.3s ease;
    }

    .alphabet-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .letter-box {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .alphabet-card h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .alphabet-card p {
        font-size: 0.8rem;
        margin-bottom: 0 !important;
    }

    .alphabet-collection {
        padding: 30px 15px;
        margin-top: 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .featured-designs {
        padding: 40px 20px;
    }

    .designs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .design-card-image {
        height: 200px;
    }

    .design-card-content {
        padding: 20px;
    }
    .design-card-header h3{
        text-align: left;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .stats-grid {
        gap: 40px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-badge {
        margin-bottom: 20px;
    }

    .main-content {
        padding: 40px 0;
    }

    .privacy-content {
        padding: 30px 20px;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .privacy-content section {
        padding: 20px;
        margin-bottom: 25px;
    }

    .privacy-content h2 {
        font-size: 1.3rem;
    }

    .contact-section {
        padding: 40px 20px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .terms-container {
        padding: 1rem;
    }

    .terms-header h1 {
        margin-top: 1rem;
    }

    .subtitle {
        color: #fff !important;
    }

    .terms-section h2 {
        font-size: 1.5rem;
        text-align: left;
    }

    .modern-slider-outer {
        padding: 40px 15px;
    }

    .modern-slider {
        min-height: 600px;
        border-radius: 15px;
        margin: 0 10px;
    }

    .slide-content {
        padding: 20px 30px;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .slide-text {
        order: 2;
    }

    .slide-image {
        order: 1;
    }

    .slide-text h2 {
        font-size: 1.8rem;
    }

    .slide-text p {
        font-size: 1rem;
    }

    .slide-meta {
        gap: 15px;
        justify-content: center;
        margin-bottom: 15px;
    }

    .slide-meta .meta-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .slider-pagination {
        bottom: 20px;
        gap: 12px;
    }

    .pagination-dot {
        width: 10px;
        height: 10px;
    }

    .slide-number {
        top: 20px;
        right: 20px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .slider-cta-section {
        padding: 40px 15px;
    }

    .slider-cta-content h5 {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .faq-question {
        padding: 7px 20px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-answer.active {
        padding: 15px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .footer-container {
        padding: 50px 20px 30px;
    }

    .tagline {
        font-size: 20px;
    }

    .subtitle {
        font-size: 13px;
    }

    .description {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .footer-links {
        order: 2;
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-links {
        order: 1;
    }

    .sitemap-card {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .sitemap-title {
        font-size: 2rem;
        margin: 2rem 0;
    }

    .pages-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
      .load-more-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .load-more-container {
        margin-top: 30px;
    }
     .design-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.5);
    }

    .design-overlay .download-btn {
        transform: translateY(0);
        opacity: 1;
        padding: 10px 20px;
        font-size: 13px;
    }
    .alphabet-design-card img {
        height: 150px;
    }

    .design-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.5);
    }
    .contact-section {
        padding: 40px 20px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .terms-container {
        padding: 1rem;
    }

    .terms-header h1 {
        margin-top: 1rem;
    }

    .subtitle {
        color: #fff !important;
    }

    .terms-section h2 {
        font-size: 1.5rem;
        text-align: left;
    }
     .main-content {
        padding: 40px 0;
    }

    .privacy-content {
        padding: 30px 20px;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .privacy-content section {
        padding: 20px;
        margin-bottom: 25px;
    }

    .privacy-content h2 {
        font-size: 1.3rem;
    }

    .banner {
        padding: 20px 0;
    }
}

@media (max-width: 600px) {
    .slide-image img {
        margin-bottom: 0 !important;
        border: none !important;
        object-fit: contain;
        height: auto;
    }
}

@media (max-width: 576px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .section-header p {
        font-size: 16px;
    }

    .mobile-category-select {
        padding: 15px 0;
    }

    .mobile-category-select .form-label {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .mobile-category-select .form-select {
        padding: 12px 18px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        max-width: 200px;
        max-height: 60px;
    }

    /* Mobile menu adjustments for smaller screens */
    .navbar {
        width: 100%;
        top: 100%;
    }

    .nav-links {
        padding: 15px;
    }

    .nav-links li a {
        padding: 12px 15px;
        font-size: 15px;
    }

    .menu-btn {
        font-size: 20px;
        padding: 8px;
        color: #333;
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .container {
        padding: 10px 15px;
    }

    .header {
        padding: 20px 15px;
    }

    .nav-links {
        padding: 15px;
    }

    .nav-links li a {
        padding: 12px 0;
    }

    .content-section {
        padding: 25px 15px;
    }

    .content-section h2 {
        font-size: 22px;
    }

    .stats-grid {
        gap: 30px;
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        padding: 0;
    }

    .alphabet-collection {
        padding: 30px 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .alphabet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .alphabet-card {
        padding: 18px 12px;
    }

    .letter-box {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .alphabet-card h4 {
        font-size: 1.1rem;
    }

    .alphabet-card p {
        font-size: 0.85rem;
    }

    .featured-designs {
        padding: 30px 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .designs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .design-card-image {
        height: 180px;
    }

    .design-card-content {
        padding: 15px;
    }

    .design-card-header h3 {
        font-size: 1.1rem;
        text-align: left;
    }

    .privacy-content {
        padding: 20px 15px;
    }

    .privacy-content h1 {
        font-size: 1.8rem;
    }

    .privacy-content section {
        padding: 15px;
        margin-bottom: 20px;
    }

    .privacy-content h2 {
        font-size: 1.2rem;
    }

    .privacy-content p {
        font-size: 0.95rem;
    }

    .privacy-content ul li {
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .footer-container {
        padding: 40px 16px 24px;
    }

    .tagline {
        font-size: 18px;
    }

    .subtitle {
        font-size: 12px;
    }

    .description {
        font-size: 12px;
        max-width: 320px;
    }

    .footer-links {
        flex-direction: row;
        gap: 16px;
        text-align: center;
    }

    .separator {
        display: none;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .sitemap-container {
        padding: 0 0.75rem;
    }

    .sitemap-card {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .sitemap-title {
        font-size: 1.75rem;
    }

    .page-link {
        padding: 0.875rem 1rem;
        gap: 0.5rem;
    }
      .design-overlay .download-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
      .alphabet-design-card img {
        height: 120px;
    }

    .download-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    .privacy-content {
        padding: 20px 15px;
    }

    .privacy-content h1 {
        font-size: 1.8rem;
    }

    .privacy-content section {
        padding: 15px;
        margin-bottom: 20px;
    }

    .privacy-content h2 {
        font-size: 1.2rem;
    }

    .privacy-content p {
        font-size: 0.95rem;
    }

    .privacy-content ul li {
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
     .container {
        padding: 0 15px;
    }

    .featured-designs {
        padding: 30px 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .designs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .design-card-image {
        height: 180px;
    }

    .design-card-content {
        padding: 15px;
    }

    .design-card-header h3 {
        font-size: 1.1rem;
    }
      .alphabet-collection {
        padding: 30px 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .alphabet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .alphabet-card {
        padding: 18px 12px;
    }

    .letter-box {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .alphabet-card h4 {
        font-size: 1.1rem;
    }

    .alphabet-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 320px) {
    .header {
        padding: 20px 15px;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        border-top: 1px solid #e9ecef;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .navbar.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        padding: 0px 0;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #dee4ea;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links li a {
        display: block;
        padding: 15px 0;
        text-align: left;
        margin-left: 20px;
    }

    .menu-btn {
        display: block;
    }
    .logo-image {
        max-width: 180px;
        max-height: 55px;
    }

    .modern-slider {
        min-height: 500px;
    }

    .slide-content {
        padding: 10px 15px;
        gap: 20px;
    }

    .slide-text h2 {
        font-size: 1.3rem;
    }

    .slide-text p {
        font-size: 0.85rem;
    }

    .slide-image img {
        max-width: 250px;
        height: 180px;
    }
}

/* Print Styles */
@media print {

    .main-content {
        padding: 0;
    }

    .content-section {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .privacy-content {
        padding: 20px;
    }
}
