:root {
    --primary-color: #2A2B2E;     
    --secondary-color: #131414;   
    --accent-color: #D4AF37;      
    --dark-color: #1C1D21;     
    --light-color: #f8f9fa;  
    --success-color: #4CAF50;
    --body-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --heading-font: 'Poppins', sans-serif;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}



.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}



.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40%;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.navbar-brand:hover::after {
    width: 60%;
}

.navbar-nav {
    gap: 1.5rem;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0 !important;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link.active {
    font-weight: 600;
    color: var(--accent-color) !important;
}

.navbar-logo {
    transition: all 0.3s ease;
    max-height: 70px;
    width: auto;
    border-radius: 10px;
}


.navbar-brand:hover .navbar-logo {
    transform: translateY(-2px);
    opacity: 0.9;
}
.navbar-brand::after {
    content: none !important;
}

/* Enhanced Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0 4rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
    border-radius: 15px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-section h1 span {
    color: var(--accent-color);
}

.hero-section .lead {
    font-size: 1.25rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-image {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    border: 5px solid white;
}

.hero-image:hover {
    transform: translateY(-10px);
}

/* Enhanced Buttons */
.btn {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline-dark {
    border-color: var(--dark-color);
    color: var(--dark-color);
}

.btn-outline-dark:hover {
    background: var(--dark-color);
    color: white;
    transform: translateY(-3px);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.btn:hover::after {
    left: 100%;
}

/* Enhanced Features Section */
.features-section {
    padding: 5rem 0;
    border-radius: 15px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    color: var(--accent-color);
    font-size: 2rem;
}

.card {
    border: none;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    position: relative;
    height: 100%;
}

.card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 5px;
    background: var(--accent-color);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-text {
    color: #666;
    line-height: 1.7;
}

.services-section {
    padding: 5rem 0;
    background-color: white;
}

.service-card {
    border-radius: 16px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-img-container {
    position: relative;
    overflow: hidden;
}

.service-img-container img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card:hover .service-img-container img {
    transform: scale(1.05);
}

.service-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    margin-top: auto;
}

.service-feature {
    font-size: 0.9rem;
    color: #555;
}

.service-feature i {
    color: var(--accent-color);
    margin-right: 5px;
}

.pricing-section {
    background-color: white;
    padding: 5rem 0;
    position: relative;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    border: 1px solid #eaeaea;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border: 2px solid var(--accent-color);
    transform: translateY(-5px) scale(1.02);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.02);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 2rem;
    background: var(--accent-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 0 0 10px 10px;
    font-size: 0.8rem;
    z-index: 1;
}

.pricing-header {
    padding: 2.5rem 2rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-tier {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-value {
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #777;
    display: block;
    margin-top: 0.5rem;
}

.pricing-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.pricing-body {
    padding: 2rem;
    flex-grow: 1;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #555;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    margin-right: 10px;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.pricing-features li i.fa-check {
    color: var(--success-color);
}

.pricing-features li i.fa-times {
    color: #dc3545;
}

.pricing-features li.disabled {
    color: #aaa;
}

.pricing-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid #f0f0f0;
}

.pricing-footer .btn {
    padding: 0.8rem 2.5rem;
    font-weight: 600;
}

.pricing-note {
    color: #666;
    font-size: 0.95rem;
    margin-top: 2rem;
}

.contact-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-color);
    transition: transform 0.3s ease;
    transform-origin: right;
    transform: scaleX(0);
}

.contact-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: white;
}

.team-avatar img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 3px solid white;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-stars i {
    color: var(--accent-color);
    margin-right: 3px;
}

.testimonial-text {
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: white;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: var(--accent-color);
}

.contact-form-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.form-control {
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-floating label {
    color: #666;
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    color: white;
    border-radius: 15px;
    margin-top: 3rem;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(212, 175, 55, 0.05)" d="M0,256L120,245.3C240,235,480,213,720,213.3C960,213,1200,235,1320,245.3L1440,256L1440,0L1320,0C1200,0,960,0,720,0C480,0,240,0,120,0L0,0Z"></path></svg>') center/cover;
}

.cta-section h2 {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section .lead {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Styling */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}


/* _________________________________________Logo Gen Page___________________________________________ */

.generate-section {
    background: var(--light-color);
    min-height: 100vh;
    border-radius: 15px;
}

.loading-animation {
    position: relative;
    width: 120px;
    height: 120px;
}

.spinner {
    width: 100%;
    height: 100%;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: var(--accent-color);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: float 3s infinite;
}

@keyframes spin { 
    100% { transform: rotate(360deg); } 
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.logo-preview {
    background: white;
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

/* ______________________________________ Gallery Page */

.gallery-section{
    background-color: var(--light-color);
    border-radius: 15px;
}


.gallery-item {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 12px;
    overflow: hidden;
}

.logo-preview {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-preview:hover .logo-overlay {
    opacity: 1;
}

.action-buttons .btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.logo-preview:hover .action-buttons .btn {
    transform: translateY(0);
    opacity: 1;
}

.logo-preview:hover .action-buttons .btn:nth-child(2) {
    transition-delay: 0.05s;
}

.logo-title {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
}


/* Animation for gallery items on page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item-wrapper {
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item-wrapper:nth-child(2) {
    animation-delay: 0.1s;
}

.gallery-item-wrapper:nth-child(3) {
    animation-delay: 0.2s;
}

.gallery-item-wrapper:nth-child(4) {
    animation-delay: 0.3s;
}

.gallery-item-wrapper:nth-child(5) {
    animation-delay: 0.4s;
}

.gallery-item-wrapper:nth-child(6) {
    animation-delay: 0.5s;
}

.gallery-item-wrapper:nth-child(7) {
    animation-delay: 0.6s;
}

.gallery-item-wrapper:nth-child(8) {
    animation-delay: 0.7s;
}


.container1, .container1-fluid, .container1-lg, .container1-md, .container1-sm, .container1-xl, .container1-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

/* Responsive Design */

@media (max-width: 992px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 6px;
    }

    .nav-link:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    .hero-section {
        padding: 6rem 0 4rem;
    }
    
    .hero-section h1 {
        font-size: 2.75rem;
    }
    
    .card {
        min-height: auto;
        margin-bottom: 1.5rem;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 6px;
    }
    
    .nav-link:hover {
        background: rgba(0, 0, 0, 0.05);
    }
    
    .hero-section {
        padding: 6rem 0 4rem;
    }
    
    .hero-section h1 {
        font-size: 2.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: translateY(0) scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.25rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }

    .hero-section h1 {
        font-size: 2.25rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
} 

@media (max-width: 767.98px) {
    .filter-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-buttons .btn {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 5rem 0 3rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
}

:focus {
    outline: 3px solid rgba(212, 175, 55, 0.5);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Form validity styles */
.form-control:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-control:valid:not(:placeholder-shown) {
    border-color: var(--success-color);
}