/* Overview Section Styles */
.overview {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}

.overview-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background-color: rgba(204, 54, 52, 0.05);
    border-radius: 50%;
    z-index: 0;
    transform: translate(250px, -250px);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.overview-text {
    padding-right: 20px;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--secondary);
}

.overview-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--secondary-light);
    line-height: 1.7;
}

.key-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background-color: var(--light-bg);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
    min-width: 24px;
}



.overview-cta {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 30px 0 25px;
    line-height: 1.5;
}

.overview-buttons {
    display: flex;
    gap: 15px;
}

.overview-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.overview-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    background-color: var(--light-bg);
    opacity: 0;
    animation: fadeInImage 0.8s ease forwards;
    transform: translateY(20px);
}

.overview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.overview-img:hover img {
    transform: scale(1.05);
}

.overview-img:nth-child(1) {
    animation-delay: 0.1s;
    transform: translateY(30px);
}

.overview-img:nth-child(2) {
    animation-delay: 0.3s;
}

.overview-img:nth-child(3) {
    animation-delay: 0.5s;
}

.overview-img:nth-child(4) {
    animation-delay: 0.7s;
    transform: translateY(-30px);
}

.overview-image::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(204, 54, 52, 0.05);
    z-index: 1;
    bottom: -50px;
    left: -50px;
    animation: floatAnimation 6s ease-in-out infinite;
}

.overview-image::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(204, 54, 52, 0.08);
    z-index: 1;
    top: -30px;
    right: -30px;
    animation: floatAnimation 8s ease-in-out infinite;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .overview-text {
        padding-right: 0;
    }

    .overview-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .key-features {
        max-width: 600px;
    }
}

@media screen and (max-width: 768px) {
    .overview {
        padding: 60px 0;
    }

    .overview-text h2 {
        font-size: 2rem;
    }

    .key-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .overview-buttons {
        flex-direction: column;
        max-width: 400px;
    }

    .overview-image-grid {
        gap: 15px;
    }

    .overview-img:nth-child(1),
    .overview-img:nth-child(4) {
        transform: translateY(0);
    }
}

@media screen and (max-width: 480px) {
    .overview-text h2 {
        font-size: 1.8rem;
    }

    .overview-text p {
        font-size: 1rem;
    }

    .overview-cta {
        font-size: 1rem;
    }

    .feature-item {
        padding: 12px;
    }
}


/*------------------------------------------------------------------------------------*/
/* Full-width Colorful CTA Section Styles */
.cta-section-full {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-dark);
    margin: 0px 0;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    opacity: 1;
    z-index: 0;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-box {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
    padding: 50px;
    color: var(--white);
}

.cta-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.cta-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.cta-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: var(--white);
}

.cta-message {
    margin-bottom: 30px;
}

.cta-message p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit i {
    color: var(--white);
    font-size: 1.2rem;
}

.benefit span {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--white);
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background-color: var(--light-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-apply i {
    transition: transform 0.3s ease;
}

.btn-apply:hover i {
    transform: translateX(5px);
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-contact:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.cta-image {
    position: relative;
    height: 100%;
}

.image-container {
    height: 100%;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-pattern-1 {
    position: absolute;
    width: 120px;
    height: 120px;
    top: -30px;
    left: -30px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    z-index: -1;
}

.cta-pattern-2 {
    position: absolute;
    width: 180px;
    height: 180px;
    bottom: -50px;
    right: -50px;
    border-radius: 50%;
    border: 15px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .cta-box {
        grid-template-columns: 1fr;
    }

    .cta-content {
        padding: 40px;
        order: 2;
    }

    .cta-image {
        order: 1;
        min-height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .cta-section-full {
        padding: 60px 0;
    }

    .cta-header h2 {
        font-size: 2rem;
    }

    .cta-message p {
        font-size: 1.1rem;
    }

    .cta-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-apply, .btn-contact {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .cta-content {
        padding: 30px;
    }

    .cta-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cta-header h2 {
        font-size: 1.8rem;
    }

    .cta-message p {
        font-size: 1rem;
    }

    .cta-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
/*------------------------------------------------------------------*/
/* Compact Admission Process Section Styles */
.admission-process {
    padding: 80px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin: 50px 0 40px;
    position: relative;
}

.process-step {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px 15px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(to bottom, var(--white), #f8f9fa);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1;
    border: 2px solid var(--white);
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(204, 54, 52, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 15px auto 15px;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
    line-height: 1.4;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-arrow {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1rem;
    z-index: 2;
}

.admission-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    padding: 20px 30px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(204, 54, 52, 0.3);
}

.cta-text {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-text i {
    font-size: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    color: var(--primary);
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Media Queries */
@media screen and (max-width: 1200px) {
    .process-flow {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }

    .step-arrow {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .admission-process {
        padding: 60px 0;
    }

    .process-flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .admission-cta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cta-text {
        flex-direction: column;
        gap: 10px;
    }
}

@media screen and (max-width: 576px) {
    .process-flow {
        grid-template-columns: 1fr;
    }
}



/* Facts & Figures Section Styles */
.facts-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.facts-bg-shape {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(204, 54, 52, 0.03) 0%, rgba(204, 54, 52, 0.08) 100%);
    border-radius: 50%;
    z-index: 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    perspective: 1000px;
    height: 280px;
}

.stat-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.stat-item:hover .stat-card {
    transform: rotateY(180deg);
}

.stat-front, .stat-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.stat-front {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    box-shadow: var(--shadow);
    z-index: 2;
}

.stat-back {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: rotateY(180deg);
    box-shadow: var(--shadow);
    z-index: 1;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
    max-width: 80%;
}

.stat-back p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.stat-source {
    font-size: 0.9rem;
    opacity: 0.8;
}

.stat-icon {
    font-size: 2.5rem;
    margin-top: 10px;
}

.facts-footer {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.facts-footer p {
    font-size: 1.2rem;
    color: var(--secondary);
    max-width: 800px;
    margin: 0 auto 25px;
    font-weight: 500;
}

.facts-btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(204, 54, 52, 0.2);
}

.facts-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(204, 54, 52, 0.3);
}

/* Media Queries */
@media screen and (max-width: 1200px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media screen and (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        height: 300px;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .stat-title {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 768px) {
    .facts-section {
        padding: 70px 0;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .facts-footer p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-item:last-child {
        grid-column: span 1;
    }

    .stat-item {
        height: 250px;
    }

    .stat-front, .stat-back {
        padding: 25px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .facts-footer p {
        font-size: 1rem;
    }
}



<style>

/* ===== CALL TO ACTION ===== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('/api/placeholder/1920/1080');
    background-position: center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 0;
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info {
    padding-right: 20px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-dark);
}

.contact-description {
    margin-bottom: 30px;
    font-size: 1.05rem;
    color: var(--secondary-light);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(204, 54, 52, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
}

.contact-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-dark);
}

.contact-text p {
    font-size: 0.95rem;
    color: var(--secondary-light);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-form-container {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--secondary-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--light);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(204, 54, 52, 0.1);
}

.submit-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(204, 54, 52, 0.2);
}
 /* Accreditation Section Styles */
 .accreditation {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.accreditation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.accreditation-text p {
    font-size: 1.05rem;
    color: var(--secondary-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.accreditation-details {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
}

.accreditation-info h3 {
    font-size: 1.8rem;
    color: var(--secondary-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.accreditation-info h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.accreditation-body {
    margin-bottom: 30px;
}

.accreditation-body p {
    margin-bottom: 10px;
    color: var(--secondary);
}

.certificate-number {
    font-weight: 600;
    color: var(--primary);
}

.certificate-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.certificate-download i {
    margin-right: 5px;
}
/* Global Partners Section Styles */
.global-partners {
    padding: 100px 0;
    background-color: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-card {
    background-color: var(--light-bg);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.partner-link {
    display: block;
    text-decoration: none;
    color: var(--secondary-dark);
}

.partner-logo {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 60%, rgba(0,0,0,0.7));
    opacity: 0;
    transition: var(--transition);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.partner-name {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    background-color: var(--light-bg);
    transition: var(--transition);
    height: 70px; /* Add fixed height */
    display: flex;
    align-items: center;
    justify-content: center; /* Center content vertically and horizontally */
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.partner-card:hover .partner-logo::before {
    opacity: 1;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.1);
}

.partner-card:hover .partner-name {
    background-color: var(--primary);
    color: var(--white);
}
/* Career Pathways Modern Design */
.career-pathways-modern {
    background-color: var(--light-bg);
    padding: 80px 0;
    position: relative;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    width: 100%;

    margin: 0 auto;
    padding: 0 15px; /* Add padding to prevent content from touching edges */
    box-sizing: border-box; /* Include padding in width calculation */
}

.career-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    padding: 0 15px; /* Add padding for smaller screens */
}

.career-highlight {
    margin-bottom: 50px;
}

.bridge-talent-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    width: 100%;
}

.bridge-talent-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0 auto;
    flex-wrap: wrap; /* Allow wrapping for mobile */
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.bridge-talent-title::before,
.bridge-talent-title::after {
    content: '';
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    margin: 0 15px;
}

.success-stories-container {
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
}

.success-story-card {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    overflow: hidden;
    transition: var(--transition);
    min-height: 250px;
    width: 100%;
}

.student-image-section {
    position: relative;
    overflow: hidden;
}

.student-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.success-story-card:hover .student-image-section img {
    transform: scale(1.1);
}

.student-details-section {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.student-name {
    font-size: 1.2rem; /* Fixed font size - was .2 */
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    width: 100%;
    word-break: break-word; /* Handle long names */
}

.student-degree {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 12px;
    width: 100%;
    word-break: break-word; /* Handle long degree names */
}

.career-details {
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    width: 100%;
    text-align: center;
}

.career-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 5px;
    word-break: break-word; /* Handle long role titles */
}

.career-company {
    color: var(--primary);
    font-size: 0.9rem;
}

.company-logo-section {
    background-color: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    transition: var(--transition);
}

.company-logo {
    width: 100px;
    height: 100px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.company-logo img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.success-story-card:hover .company-logo {
    transform: scale(1.05);
}

.career-cta {
    margin-top: 50px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 40px 20px;
    border-radius: var(--radius);
    width: 100%;
    box-sizing: border-box;
}

.career-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .success-stories-grid {
        grid-template-columns: 1fr;
    }
    .success-story-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .student-details-section {
        border-left: none;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    .company-logo-section {
        padding: 20px;
    }
    .career-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .career-pathways-modern {
        padding: 60px 0;
    }
    .bridge-talent-title {
        font-size: 1.3rem;
    }
    .bridge-talent-title::before,
    .bridge-talent-title::after {
        width: 30px;
        margin: 0 10px;
    }
    .career-cta {
        padding: 30px 15px;
    }
    .career-cta h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .career-pathways-modern {
        padding: 50px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .student-name {
        font-size: 1.1rem;
    }
    .student-degree,
    .career-company {
        font-size: 0.8rem;
    }
    .career-role {
        font-size: 0.9rem;
    }
    .bridge-talent-title {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 15px;
    }
    .bridge-talent-title::before,
    .bridge-talent-title::after {
        width: 60px;
        margin: 0;
    }
    .company-logo {
        width: 70px;
        height: 70px;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .student-name {
        font-size: 1rem;
    }
    .student-degree,
    .career-role,
    .career-company {
        font-size: 0.75rem;
    }
    .company-logo {
        width: 60px;
        height: 60px;
    }
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--secondary-dark);
    color: var(--light);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
}

.footer-about {
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: var(--light);
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    color: var(--light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social-link:hover {
    color: var(--primary);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    left: 0;
    bottom: 0;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.8rem;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact-icon {
    font-size: 1.2rem;
    color: var(--primary);
}

.footer-contact-text {
    font-size: 0.95rem;
}

.footer-newsletter p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex-grow: 1;
    padding: 12px;
    border: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-size: 0.95rem;
}

.newsletter-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .about-content {
        gap: 40px;
    }
}
/* Responsive Adjustments */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
    }
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-text {
        padding-right: 0;
    }

    .process-line {
        display: none;
    }
    .accreditation-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .accreditation-details {
        max-width: 500px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
        margin: 0 auto;
    }

    .contact-info {
        padding-right: 0;
    }
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .partner-logo {
        height: 200px;
    }

    .partner-name {
        padding: 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }

    .top-bar {
        display: none;
    }

    .hero {
        text-align: center;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-buttons {
        margin: 0 auto;
    }
    .accreditation {
        padding: 60px 0;
    }

    .accreditation-details {
        padding: 30px;
    }

    .accreditation-info h3 {
        font-size: 1.5rem;
    }
    .global-partners {
        padding: 60px 0;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .partner-logo {
        height: 150px;
    }
    .footer-top {
        gap: 40px;
    }
}


/* Expert Insights Section Styles */
.insights-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.insights-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(204, 54, 52, 0.03) 0%, rgba(204, 54, 52, 0) 70%);
    z-index: 0;
}

.video-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.video-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .thumbnail-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(204, 54, 52, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    border: 4px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.video-thumbnail:hover .play-button {
    transform: scale(1.1);
    background-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.video-content {
    padding: 25px;
}

.video-badge {
    display: inline-block;
    background-color: rgba(204, 54, 52, 0.1);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.video-badge i {
    margin-right: 5px;
}

.video-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.video-description {
    color: var(--secondary-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.video-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-cta i {
    transition: transform 0.3s ease;
}

.video-cta:hover {
    color: var(--primary-dark);
}

.video-cta:hover i {
    transform: translateX(5px);
}

/* Video Modal */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-modal {
    width: 90%;
    max-width: 900px;
    background-color: var(--dark);
    border-radius: var(--radius);
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.video-modal-overlay.active .video-modal {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.video-modal-close:hover {
    background-color: var(--primary-dark);
    transform: rotate(90deg);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Promotional Video Section */
.promo-video-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #f1f2f3 100%);
    position: relative;
    overflow: hidden;
}

.promo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.promo-text {
    padding-right: 20px;
}

.promo-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.promo-text h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.promo-text p {
    font-size: 1.1rem;
    color: var(--secondary-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(204, 54, 52, 0.3);
}

.promo-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(204, 54, 52, 0.4);
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.promo-video-preview {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.promo-video-preview img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.promo-video-preview:hover img {
    transform: scale(1.05);
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.promo-video-preview:hover .preview-overlay {
    opacity: 1;
}

.preview-play {
    width: 90px;
    height: 90px;
    background-color: rgba(204, 54, 52, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
    border: 5px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.promo-video-preview:hover .preview-play {
    transform: scale(1.1);
    background-color: var(--primary);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.video-shape-1 {
    position: absolute;
    width: 150px;
    height: 150px;
    top: -30px;
    left: -30px;
    border-radius: 20px;
    border: 15px solid rgba(204, 54, 52, 0.1);
    transform: rotate(30deg);
    z-index: -1;
}

.video-shape-2 {
    position: absolute;
    width: 180px;
    height: 180px;
    bottom: -40px;
    right: -40px;
    border-radius: 50%;
    background-color: rgba(204, 54, 52, 0.08);
    z-index: -1;
}

/* Media Queries */
@media screen and (max-width: 1200px) {
    .video-cards {
        gap: 30px;
    }

    .promo-content {
        gap: 40px;
    }

    .promo-text h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 992px) {
    .video-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .promo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .promo-text {
        padding-right: 0;
        order: 1;
    }

    .promo-video-preview {
        order: 0;
        max-width: 700px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .insights-section,
    .promo-video-section {
        padding: 70px 0;
    }

    .promo-text h2 {
        font-size: 1.8rem;
    }

    .promo-text p {
        font-size: 1rem;
    }

    .video-modal-close {
        top: -30px;
        right: 0;
    }
}

@media screen and (max-width: 576px) {
    .video-title {
        font-size: 1.3rem;
    }

    .play-button,
    .preview-play {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}


/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

/* Common Button Styles */
.floating-buttons .whatsapp-btn,
.floating-buttons .scroll-to-top {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

/* WhatsApp Button Styles */
.whatsapp-btn {
    background-color: #25D366;
    color: var(--white);
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Scroll to Top Button Styles */
.scroll-to-top {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Tooltip Styles */
.btn-tooltip {
    position: absolute;
    left: -120px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.btn-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
}

.whatsapp-btn:hover .btn-tooltip,
.scroll-to-top:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
    left: -100px;
}

/* For mobile devices */
@media screen and (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .floating-buttons .whatsapp-btn,
    .floating-buttons .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .btn-tooltip {
        display: none; /* Hide tooltips on mobile */
    }
}

    .brochure-popup {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
    }

    .brochure-popup-content {
        background-color: #fff;
        margin: 10% auto;
        padding: 30px;
        border-radius: 8px;
        max-width: 500px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        position: relative;
    }

    .close-popup {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
    }
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }
 .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--primary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--secondary-light);
}


/* Simplified CTA Styles - Self-contained to avoid conflicts */
.simple-cta {

    position: relative;
}

.simple-cta-box {
    background-color: #CC3634; /* Primary color hardcoded to avoid variable conflicts */
    color: #ffffff;
    padding: 50px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.simple-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.simple-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.simple-cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.simple-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.simple-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: #ffffff;
    color: #CC3634;
    border: 2px solid #ffffff;
}

.primary-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.secondary-btn {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.decor-element {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.decor-1 {
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    top: -50px;
    right: -50px;
}

.decor-2 {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    bottom: 50px;
    left: 50px;
}

.decor-3 {
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.1);
    bottom: -40px;
    right: 30%;
}

@media screen and (max-width: 768px) {
    .simple-cta {
        padding: 50px 0;
    }

    .simple-cta-box {
        padding: 40px 30px;
    }

    .simple-cta-title {
        font-size: 1.8rem;
    }

    .simple-cta-description {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .simple-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .simple-cta-btn {
        width: 100%;
        justify-content: center;
    }
}