:root {
    --primary-color: #333;
    --background-color: #fff;
    --secondary-background: #fafafa;
    --text-color: #333;
    --text-secondary: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {  
    overflow-x: hidden;
}

body {
    font-family: Georgia, serif,'Helvetica Neue',Helvetica,Arial,sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;

}

/* Header & Navigation */
.navbar {
    padding: 1.5rem 0;
    background-color: rgba(18, 18, 18, 0.95);
}

.navbar-toggler {
    border: none;
    color: var(--text-color);
}

.nav-link {
    color: #fff !important;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: #fff !important;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: none;
    padding: 0;
}

.navbar-brand .text-primary {
    color: var(--primary-color) !important;
}

.navbar-brand:hover .text-primary {
    text-shadow: 0 0 10px rgba(0, 255, 55, 0.5);
}

.navbar .nav-link.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #000 !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar .nav-link.cta-button i {
    font-size: 1rem;
    animation: shake 1s ease infinite;
}

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    20%, 60% {
        transform: rotate(-10deg);
    }
    40%, 80% {
        transform: rotate(10deg);
    }
}

.navbar .nav-link.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 55, 0.3);
}

.sign-in {
    display: none;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.vertical-text {
    position: absolute;
    right: 45px;
    top: 45%;
    transform: rotate(-90deg) translateX(50%);
    transform-origin: right;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 1.1;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color:var(--text-color);
    text-shadow: 0 0 20px rgba(0, 255, 55, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #888;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: #00ff37;
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #00ff37, #00cc2d);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 55, 0.3);
}

.hero-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.badge i {
    color: #00ff37;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.price {
    color: #fff !important;
    font-size: 1.5rem;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.add-to-cart, .more-details {
    padding: 0.8rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.add-to-cart {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(0, 255, 55, 0.2);
}

.add-to-cart:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 55, 0.4);
}

.add-to-cart:active {
    transform: translateY(0);
}

.more-details {
    background-color: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Categories Section */
.categories {
    padding: 5rem 5%;
    background-color: var(--secondary-background);
}

.categories h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    height: 100%;
    background-color: var(--secondary-background);
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    background-color: rgba(0, 255, 55, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
}

.feature-card:hover .feature-icon i {
    color: var(--background-color);
}

/* Partners Section */
.partners {
    padding: 5rem 0;
    background-color: var(--secondary-background);
}

.partners h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    height: 80px;
    background-color: var(--background-color);
    border-radius: 10px;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: var(--secondary-background);
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.product-carousel {
    padding: 2rem 0;
    margin: 0 -15px;
}

.swiper-slide {
    padding: 1rem;
    height: auto;
}

.product-card {
    background: linear-gradient(180deg, #2a2a2a 0%, #222222 100%);
    border-radius: 15px;
    padding: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(0, 255, 55, 0.1);
}

.product-image {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.product-image img {
    max-width: 70%;
    /* max-height: 70%; */
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    width: 100%;
}

.product-info h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-category {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, #1a1a1a, transparent);
    pointer-events: none;
}

.quick-view,
.add-to-cart {
    /* width: 40px;
    height: 40px;
    border-radius: 50%; */
    border: none;
    background-color: var(--primary-color);
    color: var(--background-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quick-view:hover,
.add-to-cart:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0,255,55,0.3);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.rating {
    color: #ffd700;
    font-size: 0.9rem;
}

/* Swiper Custom Styles */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background-color: var(--background-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.swiper-pagination-bullet {
    background: var(--text-secondary);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* Responsive Design for Products */
@media (max-width: 768px) {
    .products h2 {
        font-size: 2rem;
    }

    .product-carousel {
        padding: 1rem 0;
    }

    .product-info h3 {
        font-size: 1rem;
    }

    .price {
        font-size: 1rem;
    }

    .rating {
        font-size: 0.8rem;
    }
}

/* Facts Section */
.facts {
    padding: 5rem 0;
    background-color: var(--secondary-background);
    position: relative;
    overflow: hidden;
}

.facts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 55, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.fact-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.fact-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: border-color 0.3s ease;
}

.fact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 55, 0.1);
}

.fact-item:hover::after {
    border-color: var(--primary-color);
}

.fact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.fact-icon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 55, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.fact-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-family: 'Rajdhani', sans-serif;
}

.fact-content h3 span {
    font-size: 2rem;
    opacity: 0.8;
}

.fact-content p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
}

@media (max-width: 768px) {
    .fact-item {
        margin-bottom: 2rem;
    }
    
    .fact-content h3 {
        font-size: 2rem;
    }
    
    .fact-content h3 span {
        font-size: 1.6rem;
    }
    
    .fact-icon {
        font-size: 2rem;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: var(--secondary-background);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
    height: 250px;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 255, 55, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form {
    background-color: var(--secondary-background);
    padding: 3rem;
    border-radius: 10px;
    height: 100%;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--background-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group textarea + label {
    top: 1rem;
    transform: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    background-color: var(--secondary-background);
    padding: 0 0.5rem;
    color: var(--primary-color);
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--background-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 55, 0.3);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact h2 {
        font-size: 2rem;
    }
}

/* Footer */
footer {
    background-color: var(--secondary-background);
    padding: 4rem 0 1rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.footer-brand span {
    color: var(--primary-color);
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Newsletter Styles */
.newsletter {
    background-color: rgba(0, 255, 55, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 55, 0.1);
}

.newsletter h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.newsletter p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    background-color: var(--background-color);
    border: 1px solid rgba(0, 255, 55, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 5px;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 55, 0.1);
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--background-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--background-color);
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 55, 0.2);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .footer-links {
        margin: 2rem 0;
    }
    
    .newsletter {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .vertical-text{
        top: 62%;

    }

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

    .contact-form {
        padding: 2rem;
    }

    section {
        padding: 4rem 0;
    }

    h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 768px) {
    .vertical-text {
        display: none;
    }
    
    .hero {
        text-align: center;
        padding-top: 100px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }

    .partner-logos {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .navbar-collapse {
        background-color: var(--secondary-background);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    .nav-item {
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .ms-lg-3 {
        margin-top: 1rem;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .feature-card,
    .contact-card {
        padding: 1.5rem;
    }

    section {
        padding: 2.5rem 0;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

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

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title .highlight {
    color: var(--text-color);
}

.title-design {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-design .line {
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.title-design i {
    color: var(--primary-color);
    font-size: 24px;
}

/* Add animation for all section titles */
.section-title {
    animation: fadeInUp 0.8s ease forwards;
}

.title-design {
    animation: scaleIn 0.6s ease forwards;
    animation-delay: 0.3s;
}

.title-design .line {
    animation: slideInRight 0.6s ease forwards;
    opacity: 0;
}

.title-design .line:first-child {
    animation: slideInRight 0.6s ease forwards;
    animation-delay: 0.4s;
}

.title-design .line:last-child {
    animation: slideInLeft 0.6s ease forwards;
    animation-delay: 0.4s;
}

.title-design i {
    animation: bounceIn 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
    80% {
        opacity: 1;
        transform: scale(0.89);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00ff37, #00cc2d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 1.5rem;
    color: #000;
}

.about-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-card p {
    color: #888;
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: #00ff37;
}

.feature-item span {
    color: #fff;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00ff37;
    margin-bottom: 5px;
}

.stat-label {
    color: #888;
    font-size: 0.9rem;
}

.about-image {
    position: relative;
    padding: 20px;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    padding: 40px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(45deg, #00ff37, #00cc2d);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: #000;
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.experience-badge .text {
    font-size: 0.9rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .experience-badge {
        position: relative;
        margin-top: 20px;
        display: inline-block;
    }
}

/* About Section Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-section .section-title {
    animation: fadeInUp 0.8s ease forwards;
}

.about-card {
    animation: scaleIn 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.3s;
}

.about-features .feature-item {
    animation: slideInRight 0.6s ease forwards;
    opacity: 0;
}

.about-features .feature-item:nth-child(1) { animation-delay: 0.4s; }
.about-features .feature-item:nth-child(2) { animation-delay: 0.6s; }
.about-features .feature-item:nth-child(3) { animation-delay: 0.8s; }
.about-features .feature-item:nth-child(4) { animation-delay: 1s; }

.about-stats .stat-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.about-stats .stat-item:nth-child(1) { animation-delay: 0.6s; }
.about-stats .stat-item:nth-child(2) { animation-delay: 0.8s; }
.about-stats .stat-item:nth-child(3) { animation-delay: 1s; }

.about-image .image-container {
    animation: scaleIn 1s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.experience-badge {
    animation: slideInRight 0.8s ease forwards;
    opacity: 0;
    animation-delay: 1.2s;
}

/* Enhance hover effects */
.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 55, 0.1);
}

.feature-item:hover i {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    color: #fff;
    transition: color 0.3s ease;
}

.image-container:hover .image-overlay {
    /* background: linear-gradient(45deg, rgb(35 107 50 / 30%), rgb(17 21 18 / 8%)); */
    transition: background 0.3s ease;
    border: 1px solid #00ff37;
}

/* Form Messages */
.form-message {
    margin: 15px 0;
    padding: 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.form-message.success {
    opacity: 1;
    visibility: visible;
    background-color: rgba(0, 255, 55, 0.1);
    border: 1px solid #00ff37;
    color: #00ff37;
}

.form-message.error {
    opacity: 1;
    visibility: visible;
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    color: #ff0000;
}

/* Contact Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    color: #fff;
    background: transparent;
    border: none;
    border-bottom: 2px solid #555;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 1rem;
    color: #555;
    pointer-events: none;
    transition: all 0.3s ease;
}

.contact-form input:focus ~ label,
.contact-form input:valid ~ label,
.contact-form textarea:focus ~ label,
.contact-form textarea:valid ~ label {
    top: -20px;
    font-size: 0.8rem;
    color: #00ff37;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: #00ff37;
}

.submit-btn {
    background: linear-gradient(45deg, #00ff37, #00cc2d);
    color: #000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 55, 0.3);
}

/* Newsletter Form Styles */
.newsletter-form {
    margin-top: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #555;
    border-radius: 30px;
    background: transparent;
    color: #fff;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #00ff37;
}

.newsletter-form button {
    background: linear-gradient(45deg, #00ff37, #00cc2d);
    color: #000;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 55, 0.3);
}

/* Ads Section */
.ads-section {
    padding: 60px 0;
    background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.ads-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

.ads-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.ad-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.main-ad {
    grid-row: span 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 255, 55, 0.1), transparent);
}

.main-ad .ad-content {
    flex: 1;
    z-index: 1;
}

.main-ad h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
}

.main-ad .discount {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;

}

.main-ad .description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: #000;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #fff;
    transform: scale(1.05);
}

.side-ad {
    display: flex;
    align-items: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
}

.side-ad .ad-content {
    flex: 1;
}

.side-ad .label {
    display: inline-block;
    padding: 5px 10px;
    background: var(--primary-color);
    color: #000;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 15px;
    margin-bottom: 10px;
}

.side-ad h4 {
    font-size: 1.0rem;
    color: #fff;
    margin-bottom: 10px;
}

.side-ad .price {
    font-size: 1.0rem;
    color: #fff;
    margin-bottom: 15px;
}

.learn-more {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--primary-color);
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}

.ad-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ad-image img {
    max-width: 100%;
    height: auto;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.ad-card:hover .ad-image img {
    transform: scale(1.15);
}

.navbar-brand-logo{
    width:60px;
}

.glow-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--primary-color) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.main-ad:hover .glow-overlay {
    opacity: 0.1;
}

@media (max-width: 992px) {
    .ads-grid {
        grid-template-columns: 1fr;
    }
    
    .main-ad {
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .main-ad {
        flex-direction: column;
        text-align: center;
    }
    
    .main-ad .ad-content {
        margin-bottom: 30px;
    }
    
    .side-ad {
        flex-direction: column;
        text-align: center;
    }
    
    .side-ad .ad-content {
        margin-bottom: 20px;
    }
    
    .learn-more {
        justify-content: center;
    }
}