.landing-page .hero-section {
    display: grid;
    align-items: center;
    height: 80vh;

    background-image: url('/images/unnamed.jpg');
    background-blend-mode: darken;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.landing-page .hero-section .row {
    display: flex;
    justify-content: center;
}

.landing-page .hero-section img {
    justify-content: center;
    width: 20%;
    height: 20%;
}

.landing-page .hero-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color:blueviolet;
}

.landing-page .hero-section p {
    font-size: 1.3rem;
    margin: 20px 0;
    color:rgb(0, 0, 0);
}

.landing-page .hero-section .btn {
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
}

.landing-page .information-grid .row {
    padding: 40px;
    align-items: center;
}

.landing-page .information-grid .first-row {
    margin-bottom: 100px;
    padding: 40px;
    align-items: center;
    background-color: #dee0e4;
}

.landing-page .information-grid img {
    width: 100%;
    height: 100%;
}

.landing-page .middle-banner {
    margin-top: 50px;
    margin-bottom: 50px;
}
.landing-page .middle-banner .row {
    padding: 100px;
    align-items: center;
    text-align: center;
    background-color: #203c75;
    color: white;
}

.landing-page .middle-banner img {
    width: 50%;
    height: 50%;
}

.landing-page .template-header {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.landing-page .popular-templates {
    margin-top: 50px;
    margin-bottom: 100px;
}

.landing-page .popular-templates img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.landing-page .popular-templates .col-action {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.landing-page .template-categories .text-center {
    text-align: center;
    margin-bottom: 50px;
}

.landing-page .template-categories .card {
    transition: transform 0.2s ease-in-out;
}

.landing-page .template-categories .card:hover {
    transform: scale(1.05);
}

.landing-page .template-categories .card-img-top {
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.landing-page .why-choose-temppro .header {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 100px;
}

.landing-page .why-choose-temppro .feature-icon {
    width: 50px;
    height: auto;
}
/*END OF LANDING PAGE*/


/*START OF TEMPLATES PAGE */
.hero-filter {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 4rem 0;
    background-color: #f8f9fa;
}

.hero-filter h1 {
    font-size: 45px;
}

.hero-filter .template-search {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.hero-filter .template-search input {
    padding: 20px 20px;
    border-radius: 5px;
    font-size: 1rem;
}

.hero-filter .template-search button {
    width: 300px;
    font-size: 1rem;
    background-color: blueviolet;
}

.featured-templates .cat-thumbnail img {
    width: 20px;
    height: 20px;
}

.featured-templates .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-templates .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.featured-templates .card-title {
    font-weight: bold;
    font-size: 1.2rem;
}

.category-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

.featured-templates .btn {
    font-size: 0.875rem;
}

.related-templates .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-templates .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/*END OF TEMPLATES PAGE */

/* START OF PREMIUM TEMPLATES PAGE */
.premium-templates .col-md-9 .card {
    color: aqua;
}


/* END OF PREMIUM TEMPLATES PAGE */

/* Account Settings */
.nav-tabs .nav-link {
    color: #495057;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.nav-tabs .nav-link.active {
    color: #007bff;
    background-color: transparent;
    border-bottom: 2px solid #007bff;
}

.nav-tabs .nav-link:hover:not(.active) {
    border-bottom: 2px solid #dee2e6;
}

.settings-card {
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

:root {
    --sidebar-bg: #343a40;
    --sidebar-hover: violet;
    --sidebar-width: 250px;
    --sidebar-collapsed-width: 80px;
}

body {
    font-family: Arial, sans-serif;
}
.sidebar {
    height: 100vh;
    width: var(--sidebar-width);
    position: fixed;
    background: var(--sidebar-bg);
    color: white;
    padding-top: 20px;
    transition: width 0.3s;
}
.sidebar a {
    padding: 10px 15px;
    display: block;
    color: white;
    text-decoration: none;
}
.sidebar a:hover {
    background: var(--sidebar-hover);
}
.content {
    margin-left: calc(var(--sidebar-width) + 10px);
    padding: 20px;
    transition: margin-left 0.3s;
}
.sidebar.collapsed {
    width: var(--sidebar-collapsed-width);
}
.content.expanded {
    margin-left: calc(var(--sidebar-collapsed-width) + 10px);
}

.support img {
    height: 50px;
    width: 50px;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 0.5rem 1rem;
    color: #333;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

/*AI Template Generator Enhanced Glassmorphism styles*/
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.glass-select .form-select {
    background-color: rgba(255,255,255,0.08) !important;
    color: white !important;
    border-color: rgba(255,255,255,0.15);
    padding: 0.75rem 1rem;
}

.glass-select .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.1);
    border-color: rgba(255,255,255,0.3);
}

/* Enhanced Glow Effect */
.glow-on-hover {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glow-on-hover:hover {
    box-shadow: 0 0 20px rgba(98, 81, 221, 0.4);
    transform: translateY(-2px);
}

.glow-on-hover:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.glow-on-hover:hover:after {
    opacity: 1;
}

/* Style buttons */
.btn-style {
    transition: all 0.2s ease;
    border-radius: 8px !important;
}

.btn-style:hover {
    transform: translateY(-1px);
}

.btn-style.active {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.3) !important;
}

/* Preview Area */
.preview-area {
    transition: all 0.5s ease;
}

.preview-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Text Styling */
.text-white-50 {
    color: rgba(255, 255, 255, 0.6);
}

/* Background */
.ai-generation-section {
    background: linear-gradient(152deg, #0f172a 0%, #1e293b 100%);
}

/* Shadow */
.shadow-soft {
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.2);
}

/* Icon wrapper */
.icon-wrapper {
    transition: all 0.3s ease;
}

.icon-wrapper:hover {
    transform: rotate(10deg) scale(1.05);
}

/* Border light */
.border-light {
    border-color: rgba(255,255,255,0.15) !important;
}

/* Fixed preview container */
.preview-area {
    background: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 70%);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}

/* Custom scrollbar for Webkit browsers */
.preview-area::-webkit-scrollbar {
    width: 6px;
}

.preview-area::-webkit-scrollbar-track {
    background: transparent;
}

.preview-area::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,0.2);
    border-radius: 3px;
}

/* Content styling */
.preview-content {
    font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
    text-align: left;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: #f8f9fa;
    line-height: 1.6;
    padding-right: 10px;
}

/* START OF FOOTER */
.footer {
    color: #ffffff;
    background: #212529;
}

.footer h5 {
    color: #ffffff;
}

.footer a {
    text-decoration: none;
    color: #ffffff;
}

.footer .social-icons a {
    color: #ffffff;
    font-size: 1.2rem;
    transition: color 0.3s ease-in-out;
}

.footer .social-icons a:hover {
    color: #0d6efd;
}
/* END OF FOOTER */