/* EduViva Specific Styles */
.hero {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(to bottom, rgba(19, 160, 164, 0.05), transparent);
    position: relative;
}

.hero h2 {
    font-size: 3rem;
    color: #13A0A4;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #666;
}

.hero .btn {
    background-color: #13A0A4;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero .btn:hover {
    background-color: #0f7a7d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(19, 160, 164, 0.3);
}

.advantages {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.advantages-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0;
}

.advantage {
    font-size: 1.125rem;
    color: #13A0A4;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.advantage:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(19, 160, 164, 0.1);
}

.advantage::before {
    content: "\2713";
    font-size: 1.5rem;
    color: #13A0A4;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(19, 160, 164, 0.1);
    border-radius: 50%;
}

/* Footer Styles */
footer {
    position: sticky;
    height: 100vmin;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    background-color: black;
    color: #fff;
    bottom: 0;
    z-index: 0;
    overflow-y: auto;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 5rem 4rem 0rem 4rem;
    background-color: transparent;
}

.left-section {
    flex: 1.5;
}

.left-section h1 {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #13A0A4;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-column h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #13A0A4;
}

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

.footer-column ul li {
    margin-bottom: 1px;
    font-size: 14px;
    color: #bbb;
}

.right-section {
    flex: 1.2;
}

.location p {
    font-size: 1rem;
    color: #13A0A4;
    line-height: .8;
    margin-bottom: 20px;
}

.location span {
    color: #bbb;
}

.social-links p {
    font-size: 1rem;
    color: #13A0A4;
    margin-top: 12px;
    margin-bottom: 20px;
}

.footer-social-buttons {
    display: inline-block;
    padding: .15rem .6rem;
    align-items: center;
    border: 2px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(45deg, #a6dcb9, #00fffc, #13A0A4);
    border-radius: 30%;
    margin-right: 15px;
    transition: all ease .4s;
    position: relative;
    overflow: hidden;
}

.footer-social-buttons a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s ease;
}

.footer-social-buttons a:hover {
    opacity: 0.8;
}

.get-in-touch-button {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
    margin-left: 50px;
    margin-right: 0;
}

.get-in-touch-button a {
    text-decoration: none;
}

.get-in-touch-button .tp-theme-btn {
    width: 180px;
    height: 180px;
    border: 2px solid #13A0A4;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.get-in-touch-button .tp-theme-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(19, 160, 164, 0.2);
}

.tp-btn-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.tp-btn-inner p {
    margin: 0;
    font-size: 0.9rem;
    color: #13A0A4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tp-btn-inner b {
    font-size: 1.3rem;
    color: #13A0A4;
    margin: 10px 0;
}

.tp-btn-inner span {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.tp-btn-inner svg {
    width: 46px;
    height: 8px;
}

.tp-btn-inner svg path {
    fill: #13A0A4;
}

.footer-bottom {
    display: flex;
    margin-top: 1rem;
    border-top: 1px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(45deg, #a6dcb9, #00fffc, #13A0A4);
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    font-size: 12px;
    background-color: transparent;
}

.footer-bottom p {
    margin-top: 8px;
    font-size: 14px;
    color: #aaa;
}

/* Responsive Footer */
@media screen and (max-width: 1024px) and (min-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow-y: auto;
        padding: 5rem 3rem 1rem 3rem;
    }

    .left-section,
    .right-section {
        width: 100%;
        height: 100vmax;
        text-align: center;
    }

    .footer-column {
        display: inline-block;
        justify-content: space-between;
        align-items: center;
        margin: .5rem 2rem;
    }

    .footer-column ul {
        padding-left: 0;
    }

    .footer-bottom {
        padding: 15px;
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    footer {
        height: 100vmax;
        overflow-y: auto;
        width: 100vmin;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .right-section {
        width: 100%;
        height: 100vmax;
        text-align: center;
    }

    .left-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        padding: 2rem 1rem 3rem 1rem;
        flex-wrap: wrap;
    }

    .footer-links {
        width: 100%;
        height: auto;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-column {
        justify-content: space-between;
        align-items: center;
    }

    .footer-column h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .footer-column ul li {
        display: flex;
        flex-direction: row;
        font-size: 1rem;
    }

    .footer-social-buttons {
        margin-right: 10px;
        padding: .2rem .4rem;
        border-radius: 50%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 1rem;
        color: #aaa;
    }

    .get-in-touch-button {
        justify-content: center;
        margin-left: 0;
    }

    .get-in-touch-button .tp-theme-btn {
        width: 150px;
        height: 150px;
    }

    .tp-btn-inner {
        padding: 15px;
    }

    .tp-btn-inner p {
        font-size: 0.8rem;
    }

    .tp-btn-inner b {
        font-size: 1.1rem;
    }

    .tp-btn-inner svg {
        width: 36px;
        height: 6px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .advantages-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .advantage {
        padding: 1.25rem;
    }
}

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

    .hero .btn {
        width: 100%;
        padding: 0.875rem;
    }
}

/* About EduViva Section */
.about-eduviva {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #13A0A4;
    margin-bottom: 3rem;
    font-weight: 700;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.about-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.02);
}

.about-text {
    padding: 20px;
}

.feature-title {
    font-size: 2.2rem;
    color: #13A0A4;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.features-list {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.feature-item i {
    font-size: 24px;
    color: #13A0A4;
    background: rgba(19, 160, 164, 0.1);
    padding: 12px;
    border-radius: 50%;
}

.feature-details h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
}

.feature-details p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.vision-statement {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(120deg, rgba(19, 160, 164, 0.05) 0%, rgba(166, 220, 185, 0.1) 100%);
    border-left: 4px solid #13A0A4;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 15px rgba(19, 160, 164, 0.05);
}

.vision-statement h4 {
    font-size: 1.3rem;
    color: #13A0A4;
    margin-bottom: 1rem;
}

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

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .about-content {
        gap: 30px;
    }
    
    .feature-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .feature-image {
        max-width: 100%;
    }
    
    .about-text {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .about-eduviva {
        padding: 40px 0;
    }
    
    .feature-title {
        font-size: 1.8rem;
    }
    
    .feature-item {
        padding: 15px;
    }
}

/* Highlight styling */
.highlight {
    color: #13A0A4;
    font-weight: 500;
    background: linear-gradient(120deg, rgba(19, 160, 164, 0.1) 0%, rgba(19, 160, 164, 0.1) 100%);
    padding: 2px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.highlight:hover {
    background: linear-gradient(120deg, rgba(19, 160, 164, 0.2) 0%, rgba(19, 160, 164, 0.2) 100%);
} 