/* 
 * IronCore Coaching Main Stylesheet
 * Content-Type: text/css
 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Hero Section */
.hero {
    background-color: black;
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

#hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}


/* Section Styles for the rest of the page */
section {
    padding: 200px 0;
}











/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: #ff4500;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* About Section */
.about {
    background-color: black;
    color: white;
    padding: 100px 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

/* Left-align the section header in the about section */
.about-text .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.about-text .section-header h2 {
    font-size: 2.5rem;
    color: #ff4500;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-text .section-header h2::after {
    content: none; /* Remove the underline */
}

.about-text .section-header p {
    font-size: 1.2rem;
    color: white;
    text-align: left;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
}

.highlight-text {
    font-size: 1.4rem !important;
    color: #ff4500 !important;
    font-weight: 600;
    margin: 30px 0 !important;
    line-height: 1.5;
    padding-left: 15px;
    border-left: 4px solid #ff4500;
}

.mission-section {
    margin-top: 40px;
    background: rgba(255, 69, 0, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 69, 0, 0.2);
    margin-bottom: 30px;
}

.mission-image {
    margin-top: 20px;
    margin-bottom: 40px;
    width: 100%;
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mission-image .about-img {
    width: 100%;
    display: block;
    border-radius: 15px;
    transform: scale(1.01);
    transition: transform 0.6s ease;
}

.mission-image:hover .about-img {
    transform: scale(1.05);
}

.values-section {
    margin-bottom: 40px;
}

.about-right .about-images {
    margin-top: 20px;
}

.mission-section h3 {
    color: #ff4500;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.mission-section p {
    color: #ddd !important;
    margin-bottom: 0;
}

.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-width: 300px;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

.values-section h3 {
    color: #ff4500;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.values-list li:hover {
    transform: translateY(-5px);
    background: rgba(255, 69, 0, 0.1);
}

.value-number {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 69, 0, 0.7);
    line-height: 1;
}

.value-content {
    flex: 1;
}

.value-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #fff;
}

.value-content p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.about .section-header p {
    color: #ccc;
}

@media (max-width: 1000px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-right {
        width: 100%;
    }
    
    .highlight-text {
        font-size: 1.3rem !important;
    }
    
    .mission-section {
        padding: 20px;
    }
    
    .mission-image {
        display: none;
    }
    
    .values-list li {
        padding: 15px;
    }
    
    .values-section {
        margin-bottom: 30px;
    }
}

/* Programs Section */
.programs {
    background-color: black;
    color: white;
    padding: 0 0 150px 0;
}

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

.programs .section-header h2 {
    font-size: 3.5rem;
    color: #ff4500;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.programs .section-header h2::after {
    content: none; /* Remove the underline */
}

.programs .section-header p {
    font-size: 1.2rem;
    color: white;
}

.program-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.program-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.program-img {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    background: linear-gradient(145deg, #222 0%, #333 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* Add texture overlay to all program backgrounds */
.program-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
    z-index: 1;
}

/* Program type-specific colors */
/* Weight Loss - Red theme */
#weight-loss-content .program-img {
    background: linear-gradient(145deg, #4a0000 0%, #7a1212 100%);
}

#weight-loss-content .program-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.2) 0%, transparent 50%);
    z-index: 0;
}

#weight-loss-content .program-icon i {
    color: #ff3a3a;
}

#weight-loss-content .add-to-cart-btn {
    background: #ff3a3a;
}

#weight-loss-content .add-to-cart-btn:hover {
    background: #e52121;
}

#weight-loss-content .program-price {
    color: #ff3a3a;
}

#weight-loss-content .program-features ul li:before {
    color: #ff3a3a;
}

/* Muscle Building - Blue theme */
#muscle-building-content .program-img {
    background: linear-gradient(145deg, #001a4a 0%, #123b7a 100%);
}

#muscle-building-content .program-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(0, 100, 255, 0.2) 0%, transparent 60%);
    z-index: 0;
}

#muscle-building-content .program-icon i {
    color: #3a80ff;
}

#muscle-building-content .add-to-cart-btn {
    background: #3a80ff;
}

#muscle-building-content .add-to-cart-btn:hover {
    background: #2160dd;
}

#muscle-building-content .program-price {
    color: #3a80ff;
}

#muscle-building-content .program-features ul li:before {
    color: #3a80ff;
}

/* Strength Building - Green theme */
#strength-building-content .program-img {
    background: linear-gradient(145deg, #1f3300 0%, #3b5c10 100%);
}

#strength-building-content .program-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 70%, rgba(100, 255, 0, 0.2) 0%, transparent 60%);
    z-index: 0;
}

#strength-building-content .program-icon i {
    color: #8aff3a;
}

#strength-building-content .add-to-cart-btn {
    background: #5ca21f;
}

#strength-building-content .add-to-cart-btn:hover {
    background: #4a8619;
}

#strength-building-content .program-price {
    color: #5ca21f;
}

#strength-building-content .program-features ul li:before {
    color: #5ca21f;
}

/* Online Coaching - Purple theme */
#online-coaching-content .program-img {
    background: linear-gradient(145deg, #3a004a 0%, #6b127a 100%);
}

#online-coaching-content .program-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 70% 80%, rgba(200, 0, 255, 0.2) 0%, transparent 60%);
    z-index: 0;
}

#online-coaching-content .program-icon i {
    color: #d43aff;
}

#online-coaching-content .add-to-cart-btn {
    background: #a61fca;
}

#online-coaching-content .add-to-cart-btn:hover {
    background: #8519a4;
}

#online-coaching-content .program-price {
    color: #a61fca;
}

#online-coaching-content .program-features ul li:before {
    color: #d43aff;
}

/* Package tabs color coding */
.package-tab[data-package="weight-loss"] {
    border-color: #ff3a3a;
}

.package-tab[data-package="muscle-building"] {
    border-color: #3a80ff;
}

.package-tab[data-package="strength-building"] {
    border-color: #5ca21f;
}

.package-tab[data-package="online-coaching"] {
    border-color: #a61fca;
}

.package-tab.active[data-package="weight-loss"],
.package-tab[data-package="weight-loss"]:hover {
    background-color: #ff3a3a;
}

.package-tab.active[data-package="muscle-building"],
.package-tab[data-package="muscle-building"]:hover {
    background-color: #3a80ff;
}

.package-tab.active[data-package="strength-building"],
.package-tab[data-package="strength-building"]:hover {
    background-color: #5ca21f;
}

.package-tab.active[data-package="online-coaching"],
.package-tab[data-package="online-coaching"]:hover {
    background-color: #a61fca;
}

.program-content {
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    padding: 20px;
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 2;
}

.program-content h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
    padding: 10px 15px;
    background: rgba(255, 69, 0, 0.2);
    border-radius: 8px;
}

.program-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.program-features {
    margin-bottom: 15px;
    width: 100%;
}

.program-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-features ul li {
    padding: 8px 0;
    color: #ddd;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.program-features ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #ff4500;
    position: absolute;
    left: 0;
    top: 8px;
}

.program-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff4500;
    margin: 15px 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.add-to-cart-btn {
    background: #ff4500;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart-btn:hover {
    background: #e53d00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

/* Premium Badge Styles */
.premium-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #a61fca, #d43aff);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 3px 10px rgba(212, 58, 255, 0.5);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.program-card.premium {
    border: 1px solid rgba(255, 69, 0, 0.3);
}

/* Contact Section */
.contact {
    position: relative;
    padding: 120px 0;
    color: white;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact .section-header h2 {
    color: white;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.form-group select option {
    background-color: #333;
    color: white;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #ff4500;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.3s;
}

.submit-btn:hover {
    background-color: #e53d00;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ff4500;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #ff4500;
}

.footer-contact p {
    margin-bottom: 12px;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icon:hover {
    background-color: #ff4500;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}


.social-nav {
    position: absolute;
    top: 69%;
    right: 14vw;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    z-index: 100;
}

.social-nav .social-icon {
    color: white;
    font-size: 2rem;
    transition: color 0.3s, transform 0.3s;
}

.social-nav .social-icon:hover {
    color: #ccc;
    transform: scale(1.1);
}

/* Home and Programs Navigation Styles */
.home-nav {
    position: absolute;
    top: 69%;
    right: 26vw; /* Position to the left of social-nav which is at right: 90px */
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.home-btn, .programs-btn, .about-btn, .contact-btn {
    display: inline-block;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    padding-bottom: 1rem;
    transition: color 0.3s;
}

.home-btn::after, .programs-btn::after, .about-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(50% - 7.5rem);
    width: 15rem;
    height: 1px;
    background-color: white;
}

.home-btn:hover, .programs-btn:hover, .about-btn:hover, .contact-btn:hover {
    color: #ff4500;
}

/* Logo Container */
.logo-container {
    position: absolute;
    top: 15%;
    left: 70%;
    transform: translateX(-50%);
    z-index: 200;
    width: 50vw;
}

.logo-container img {
    width: 100%;
    height: auto;
}

@media (min-width: 2000px) {
    .home-nav {
        gap: 2rem;
        right: 28vw;
    }
    .home-btn, .programs-btn, .about-btn, .contact-btn {
        font-size: 2.5rem;
        padding-bottom: 2rem;
    }
    .home-btn::after, .programs-btn::after, .about-btn::after {
        left: calc(50% - 12rem);
        width: 24rem;
    }
    .social-nav {
        right: 20vw;
        gap: 4rem;
    }
    .social-nav .social-icon {
        font-size: 2.5rem;
    }
    .logo-container {
        width: 35vw;
    }
}
@media (min-width: 3000px) {
    .logo-container {
        width: 35vw;
    }
    .social-nav {
        right: 20vw;
        gap: 4rem;
    }
}

@media (max-width: 1400px) {
    .logo-container {
        width: 35vw;
    }
}

@media (max-width: 1200px) {
    .logo-container {
        width: 40vw;
    }
}

/* Cart Styles */
.cart-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #ff4500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff4500;
    color: white;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1001;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.cart-items {
    padding: 20px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.cart-item-icon i {
    font-size: 24px;
    color: #ff4500;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #666;
}

.remove-item {
    color: #ff4500;
    cursor: pointer;
    padding: 5px;
}

.cart-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    border-top: 1px solid #eee;
    background-color: white;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background-color: #ff4500;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.checkout-btn:hover {
    background-color: #e53d00;
}

/* Questionnaire Modal */
.questionnaire-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
}

.questionnaire-modal.active {
    display: block;
}

.modal-content {
    position: relative;
    background-color: white;
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-group input[type="number"],
.form-group input[type="text"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-group input[type="radio"] {
    margin-right: 8px;
}

.submit-questionnaire {
    background-color: #ff4500;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-questionnaire:hover {
    background-color: #e53d00;
}





@media (max-width: 1000px) {
    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .modal-content {
        margin: 20px;
        padding: 20px;
    }

    .cart-icon {
        position: fixed;
        bottom: 20px;
        right: 20px;
        top: auto;
        background-color: #ff4500;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .cart-count {
        top: -5px;
        right: -5px;
        background-color: black;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .home-nav, .social-nav {
        display: none;
    }

    .logo-container {
        width: 70vw;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

/* Combined Contact & Footer Section */
.contact-footer {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    overflow: hidden;
    padding: 60px 0 30px 0;
}

.contact-footer-content {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.contact-side, .footer-side {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

/* Contact Side */
.contact-side .section-header {
    margin-bottom: 30px;
}

.glow-text {
    color: #ffffff !important;
    text-shadow: none !important;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Override any section header styling */
.section-header h2.glow-text {
    color: #ffffff !important;
    text-shadow: none !important;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-card {
    flex: 1;
    max-width: 230px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.contact-card.active {
    border-color: #ff4500;
    background: rgba(255, 69, 0, 0.1);
}

.contact-card i {
    font-size: 2rem;
    color: #ff4500;
    margin-bottom: 10px;
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-card-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    min-height: 350px;
}

.card-content {
    display: none;
}

.card-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-form .form-row {
    display: flex;
    gap: 15px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.pulse-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #ff4500;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pulse-btn:hover {
    background-color: #e53d00;
}

.pulse-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.pulse-btn:hover::after {
    animation: pulse 1s ease-out;
}

@keyframes pulse {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(50, 50);
        opacity: 0;
    }
}

/* Location info styles */
.location-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.address {
    flex: 1;
    min-width: 200px;
}

.address h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ff4500;
}

.address p {
    margin-bottom: 8px;
    font-size: 1rem;
}

.map-container {
    flex: 2;
    min-width: 200px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Social links styles */
.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

.social-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-box i {
    font-size: 2rem;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.social-box:hover {
    background: rgba(255, 69, 0, 0.2);
}

.social-box:hover i {
    transform: scale(1.2);
}

/* Footer side styles */
.footer-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.tagline {
    font-size: 1rem;
    color: #ccc;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.link-column h4 {
    color: #ff4500;
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
}

.link-column h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #ff4500;
}

.link-column ul li {
    margin-bottom: 10px;
}

.link-column ul li a {
    color: #ccc;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.link-column ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-item i {
    width: 30px;
    color: #ff4500;
    font-size: 1.1rem;
}

.newsletter {
    margin-top: 20px;
}

.newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    max-width: 350px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px 0 0 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form button {
    padding: 12px 15px;
    border: none;
    border-radius: 0 5px 5px 0;
    background-color: #ff4500;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #e53d00;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 30px;
}

@media (max-width: 1000px) {
    .contact-footer-content {
        flex-direction: column;
    }
    
    .contact-cards {
        flex-direction: column;
    }
    
    .contact-form .form-row {
        flex-direction: column;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .link-column {
        flex-basis: 100%;
    }
}

/* Animation and success message styles */
.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.success-message {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease;
}

.success-message i {
    color: #4CAF50;
    font-size: 4rem;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.success-message p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Newsletter success animation */
.newsletter-form.success input {
    background-color: rgba(76, 175, 80, 0.2);
}

.newsletter-form.success button {
    background-color: #4CAF50;
}

/* Package Tabs Styles */
.package-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.package-tab {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ff4500;
    z-index: -1;
    transition: width 0.3s ease;
}

.package-tab:hover::before,
.package-tab.active::before {
    width: 100%;
}

.package-tab.active {
    background: transparent;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

/* Package Content Styles */
.package-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.package-content.active {
    display: block;
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
}

.package-header h3 {
    font-size: 1.8rem;
    color: #ff4500;
    margin-bottom: 10px;
}

.package-header p {
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Program Cards Update */
.program-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.program-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.program-img {
    position: relative;
    overflow: hidden;
}

.program-img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

.program-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    backdrop-filter: blur(10px);
}

.program-content h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
}

.program-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.program-features {
    margin-bottom: 15px;
    width: 100%;
}

.program-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-features ul li {
    padding: 8px 0;
    color: #ddd;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.program-features ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #ff4500;
    position: absolute;
    left: 0;
    top: 8px;
}

.program-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff4500;
    margin: 15px 0;
}

.add-to-cart-btn {
    background: #ff4500;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart-btn:hover {
    background: #e53d00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

/* Premium Badge Styles */
.premium-badge {
    position: absolute;
    top: 80px;
    right: 10px;
    background: linear-gradient(135deg, #ff4500, #ff8c00);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 3px 10px rgba(255, 69, 0, 0.5);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.program-card.premium {
    border: 1px solid rgba(255, 69, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 1000px) {
    .package-tabs {
        flex-wrap: wrap;
    }
    
    .program-cards {
        gap: 20px;
    }
    
    .program-card {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .package-tab {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .program-content h3 {
        font-size: 1.2rem;
    }
    
    .program-features ul li {
        font-size: 0.85rem;
    }

    /* Remove colored headers in program cards */
    .program-content {
        background: transparent;
        backdrop-filter: none;
    }
    
    .program-card .program-img {
        background: transparent !important;
        border: none !important;
    }
    
    /* Remove colored top border/bar */
    .program-card {
        border-top: none !important;
        background: rgba(0, 0, 0, 0.5) !important;
    }
    
    /* Remove any gradient backgrounds */
    .program-card .program-img::before,
    .program-card .program-img::after {
        display: none !important;
    }
}

.program-icon {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.program-icon i {
    font-size: 3rem;
    color: #ff4500;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

.program-card:hover .program-icon {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 40px rgba(255, 69, 0, 0.5);
}

#weight-loss-content .program-icon i {
    color: #ff3a3a;
}

#muscle-building-content .program-icon i {
    color: #3a80ff;
}

#strength-building-content .program-icon i {
    color: #8aff3a;
}

#online-coaching-content .program-icon i {
    color: #d43aff;
}

.program-card.premium .program-icon {
    background: linear-gradient(145deg, rgba(255, 140, 0, 0.3), rgba(255, 215, 0, 0.3));
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.program-card.premium .program-icon i {
    color: #ffc700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Premium program cards get a special gradient */
.program-card.premium .program-img {
    background: linear-gradient(145deg, #3a004a 0%, #6b127a 100%);
    border: 1px solid rgba(212, 58, 255, 0.3);
}

.program-card.premium .program-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(212, 58, 255, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(166, 31, 202, 0.3) 0%, transparent 40%);
    z-index: 0;
}

.premium-badge {
    position: absolute;
    top: 80px;
    right: 10px;
    background: linear-gradient(135deg, #a61fca, #d43aff);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 3px 10px rgba(212, 58, 255, 0.5);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile redesign for contact footer and footer */
@media (max-width: 1000px) {
    /* Contact Footer - Mobile */
    .contact-footer {
        padding: 50px 0 30px 0;
    }
    
    .contact-footer-content {
        flex-direction: column;
    }
    
    .contact-side, .footer-side {
        padding: 15px;
    }
    
    .contact-side .section-header {
        margin-bottom: 20px;
    }
    
    .contact-side .section-header h2 {
        font-size: 2rem;
    }
    
    /* Contact Cards - Mobile */
    .contact-cards {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .contact-card {
        flex: 0 0 calc(50% - 15px);
        max-width: none;
        padding: 15px;
    }
    
    .contact-card i {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .contact-card h3 {
        font-size: 1rem;
    }
    
    /* Contact Card Content - Mobile */
    .contact-card-content {
        padding: 20px;
        min-height: auto;
    }
    
    .contact-form .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-form .form-group input,
    .contact-form .form-group select,
    .contact-form .form-group textarea {
        padding: 12px;
    }
    
    /* Social links - Mobile */
    .social-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .social-box {
        padding: 15px;
    }
    
    .social-box i {
        font-size: 1.5rem;
    }
    
    /* Footer side - Mobile */
    .footer-side {
        margin-top: 30px;
    }
    
    .footer-logo {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .tagline {
        text-align: center;
    }
    
    /* Footer Links - Mobile */
    .footer-links {
        gap: 25px;
        justify-content: space-between;
    }
    
    .link-column {
        flex: 0 0 calc(50% - 15px);
    }
    
    .link-column h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .link-column ul li {
        margin-bottom: 8px;
    }
    
    /* Footer Contact Info - Mobile */
    .footer-contact-info {
        margin: 0 auto 20px;
        max-width: 300px;
    }
    
    .contact-item {
        margin-bottom: 12px;
    }
    
    /* Newsletter - Mobile */
    .newsletter {
        margin: 0 auto;
        max-width: 300px;
    }
    
    .newsletter h4 {
        text-align: center;
    }
    
    .newsletter-form {
        max-width: none;
    }
    
    .copyright {
        margin-top: 20px;
        padding-top: 20px;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .contact-footer {
        padding: 40px 0 20px 0;
    }
    
    .contact-card {
        flex: 0 0 100%;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .link-column {
        flex: 0 0 100%;
    }
    
    .link-column h4 {
        text-align: center;
    }
    
    .link-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .link-column ul {
        text-align: center;
    }
    
    .link-column ul li a:hover {
        transform: none;
    }
}

/* Mobile Social Icons Styles */
.mobile-social-icons {
    display: none;
    margin-top: 25px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-social-icons .social-icon {
    color: #ff4500;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-social-icons .social-icon:hover {
    transform: scale(1.1);
    background: rgba(255, 69, 0, 0.2);
    color: #fff;
}

@media (max-width: 1000px) {
    .mobile-corner-nav {
        display: flex;
    }
    
    .mobile-social-icons {
        display: flex;
    }
    
    .cart-icon {
        bottom: 20px;
        right: 20px;
        top: auto;
        left: auto;
    }
    
    .logo-container {
        width: 70vw;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

/* Mobile Corner Navigation */
.mobile-corner-nav {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
}

.mobile-corner-nav.scrolled {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    overflow: hidden;
    gap: 0;
}

.mobile-corner-nav.scrolled .nav-link {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: translateX(100px);
}

.mobile-corner-nav.scrolled .hamburger-icon {
    opacity: 1;
    pointer-events: auto;
}

.mobile-corner-nav .hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    pointer-events: none;
}

.mobile-corner-nav .hamburger-icon span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 3px 0;
    background-color: #ff4500;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-corner-nav.expanded {
    width: auto;
    height: auto;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 60px 20px 20px 20px;
}

.mobile-corner-nav.expanded .nav-link {
    opacity: 1;
    position: relative;
    transform: translateX(0);
    pointer-events: auto;
    transition-delay: 0.1s;
}

.mobile-corner-nav.expanded .hamburger-icon {
    position: absolute;
    top: 10px;
    right: 10px;
}

.mobile-corner-nav.expanded .hamburger-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-corner-nav.expanded .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-corner-nav.expanded .hamburger-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1000px) {
    .mobile-corner-nav {
        display: flex;
    }
    
    .mobile-social-icons {
        display: flex;
    }
    
    .cart-icon {
        bottom: 20px;
        right: 20px;
        top: auto;
        left: auto;
    }
    
    .logo-container {
        width: 70vw;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.mobile-corner-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 15px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 69, 0, 0.3);
    cursor: pointer;
}

.mobile-corner-nav .nav-link i {
    font-size: 1.2rem;
    margin-left: 10px;
    margin-right: 0;
    color: #ff4500;
}

.mobile-corner-nav .nav-link span {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.mobile-corner-nav .nav-link:hover {
    background: rgba(255, 69, 0, 0.8);
    transform: translateX(-5px);
}

.mobile-corner-nav .nav-link:hover i {
    color: white;
}
