/* Global Styles */
:root {
    --primary-red: #DC143C;
    --dark-green: #0D5C5C;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-red), var(--dark-green));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1.5rem;
}

.section-padding {
    padding: 100px 0;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #a00f2b 100%);
    border: none;
    padding: 12px 35px;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #a00f2b 0%, var(--primary-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 35px;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-red);
    border-color: var(--white);
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-matrix {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 1px;
}

.brand-abacus {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-gray);
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 8px 16px;
    margin: 0 5px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-red);
}

.btn-enroll {
    padding: 8px 25px !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-red) 0%, #8b0000 100%);
    color: var(--white);
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,197.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

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

.hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-matrix-hero {
    color: var(--white);
    display: inline-block;
    margin-right: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.brand-abacus-hero {
    color: #FFD700;
    display: inline-block;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-badge i {
    font-size: 1.2rem;
    color: #ffd700;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    text-align: center;
    line-height: 40px;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    transition: var(--transition);
}

.scroll-down:hover {
    background: var(--white);
    color: var(--primary-red);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Leadership Cards - Simplified */
.leadership-card-simple {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.leadership-card-simple:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.15);
}

.leadership-image-simple {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.leadership-image-simple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.leadership-info {
    padding: 20px 15px;
    background: linear-gradient(to bottom, var(--white) 0%, #f8f9fa 100%);
}

.leadership-info h5 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-weight: 600;
}

.leadership-info .position {
    color: var(--primary-red);
    font-weight: 500;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Old Leadership Cards (kept for reference, can be removed) */
.leadership-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

.leadership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.2);
}

.leadership-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.leadership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.leadership-content {
    padding: 30px;
}

.leadership-content h4 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.leadership-content .position {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.leadership-content .description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    text-align: justify;
}

.leadership-content .highlight {
    font-style: italic;
    color: var(--dark-green);
    font-weight: 500;
    padding: 10px;
    background: rgba(13, 92, 92, 0.1);
    border-left: 3px solid var(--dark-green);
    border-radius: 5px;
}

/* Vision Section */
.vision-box {
    position: relative;
    padding-left: 80px;
}

.icon-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.8rem;
    color: var(--white);
}

.vision-icon {
    background: linear-gradient(135deg, var(--primary-red), #ff4757);
}

.mission-icon {
    background: linear-gradient(135deg, var(--dark-green), #1abc9c);
}

.experience-icon {
    background: linear-gradient(135deg, #f39c12, #f1c40f);
}

.vision-box h3 {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.vision-box p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

.vision-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Programs Section */
.program-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-red), var(--dark-green));
    transform: scaleX(0);
    transition: var(--transition);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.2);
}

.program-card.featured {
    border: 2px solid var(--primary-red);
    background: linear-gradient(135deg, #fff 0%, #fff5f7 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.program-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red), #ff4757);
    border-radius: 15px;
    margin-bottom: 25px;
    font-size: 2.5rem;
    color: var(--white);
}

.program-card h4 {
    font-size: 1.6rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.program-card p {
    color: #666;
    margin-bottom: 20px;
}

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

.program-features li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-features li i {
    color: var(--dark-green);
    font-size: 1.2rem;
}

/* Benefits Section */
.benefits-section {
    background: var(--white);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.benefits-section h3 {
    font-size: 2rem;
    color: var(--dark-gray);
}

.benefit-item {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    display: block;
}

.benefit-item h5 {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Franchise Section */
.franchise-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.franchise-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05) 0%, rgba(13, 92, 92, 0.05) 100%);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.franchise-content {
    position: relative;
    z-index: 2;
}

.franchise-content h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
}

.franchise-content .row {
    align-items: stretch;
}

.franchise-image {
    height: 100%;
    display: flex;
    align-items: center;
}

.franchise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.franchise-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.franchise-benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.15);
}

.franchise-benefit-item i {
    font-size: 2rem;
    color: var(--primary-red);
    flex-shrink: 0;
}

.franchise-benefit-item h5 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.franchise-benefit-item p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-info-card,
.contact-form-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-info-card h4,
.contact-form-card h4 {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red), #ff4757);
    border-radius: 10px;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h6 {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--primary-red);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--dark-green);
}

.form-label {
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 20px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(220, 20, 60, 0.15);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-red);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-badges .badge {
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 8px 12px;
    font-weight: 500;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

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

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 30px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Leadership Cards - Responsive adjustments for simplified cards */
@media (max-width: 991px) {
    .leadership-image-simple {
        height: 250px;
    }
    
    .leadership-info h5 {
        font-size: 1rem;
    }
    
    .leadership-info .position {
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .leadership-image-simple {
        height: 300px;
    }
    
    #about .col-sm-6 {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, #8b0000 100%);
    color: var(--white);
    padding: 150px 0 80px;
    margin-top: 76px;
}

.page-header h1 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.page-header .breadcrumb-item a:hover {
    color: var(--white);
}

.page-header .breadcrumb-item.active {
    color: var(--white);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Director Detail Cards */
.director-detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.director-detail-card:hover {
    box-shadow: 0 15px 50px rgba(220, 20, 60, 0.15);
    transform: translateY(-5px);
}

.director-image-large {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.director-image-large img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.director-detail-card:hover .director-image-large img {
    transform: scale(1.05);
}

.director-info-box {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
}

.director-info-box h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-weight: 700;
}

.director-info-box .director-title {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.director-info-box .director-tagline {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.director-message {
    position: relative;
    padding: 30px;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 4rem;
    color: var(--primary-red);
    opacity: 0.2;
}

.director-message .message-title {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-weight: 600;
}

.director-message .message-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.director-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(13, 92, 92, 0.1) 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
    margin-top: 30px;
}

.director-highlight i {
    font-size: 2rem;
    color: var(--primary-red);
    flex-shrink: 0;
}

.director-highlight p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 500;
    font-style: italic;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-red) 0%, #a00f2b 100%);
    color: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.3);
}

.cta-box h3 {
    color: var(--white);
    font-size: 2rem;
}

.cta-box .lead {
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-primary {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--white);
    color: var(--primary-red);
    border-color: var(--white);
}

/* Responsive Design */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .btn-enroll {
        margin-top: 10px !important;
    }

    .vision-box {
        padding-left: 0;
        margin-bottom: 30px;
    }

    .icon-box {
        position: relative;
        margin-bottom: 15px;
    }

    .benefits-section {
        padding: 30px 20px;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .director-detail-card {
        padding: 25px;
    }
    
    .director-message {
        padding: 20px 0;
    }
    
    .director-message .message-title {
        font-size: 1.5rem;
    }
    
    .cta-box {
        padding: 40px 25px;
    }
}
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
    }

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

    .hero-features {
        flex-direction: column;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .leadership-image {
        height: 300px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }

    .franchise-content h2 {
        font-size: 2rem;
    }
}

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

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

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

/* Scroll Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

