:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e74c3c;
    --light: #f8f9fa;
    --white: #ffffff;
    --text: #333333;
    --border: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.logo {
    text-decoration: none !important;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo * {
    text-decoration: none !important;
}


body {
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--white);
    color: var(--text);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;

}

.logo img {
    height: 60px;
    margin-right: 15px;
}

.logo-text h1 {
    font-size: larger;
    color: var(--primary);
}

.logo-text p {
    font-size: 0.8rem;
    color: black;
    font-style: italic;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
    /* Add some padding for better hover area */
}

nav ul li a:hover,
nav ul li a:focus,
nav ul li a.active {
    /* Added active class for JavaScript */
    color: var(--accent);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent);
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

nav ul li a:hover::after,
nav ul li a:focus::after,
nav ul li a.active::after {
    /* Added active class for JavaScript */
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */


.hero {
    position: relative;
    overflow: hidden;

    /* background-size: cover;
    background-position: center; */
    height: 100vh;
    /* display: flex;
    align-items: center;
    text-align: center;
    color: var(--text);
    padding-top: 80px; */
}



.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    color: rgb(255, 255, 255);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
    color: var(--text);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--accent);
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--accent);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: rgb(255, 255, 255);
    border: 2px solid rgb(255, 255, 255);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Adjust opacity here (0.3 = 30%) */
    z-index: 1;
    /* Between background and content */
}


.sliding-backgrounds {
    position: absolute;
    width: 600%;
    height: 100%;
    display: flex;
    animation: slide 36s infinite linear;
    z-index: 0;
    /* Behind overlay */
}

.sliding-backgrounds::before,
.sliding-backgrounds::after,
.sliding-backgrounds div:nth-child(1),
.sliding-backgrounds div:nth-child(2),
.sliding-backgrounds div:nth-child(3),
.sliding-backgrounds div:nth-child(4) {
    content: '';
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.sliding-backgrounds::before {
    background-image: url('images/slide1.jpg');
}

.sliding-backgrounds::after {
    background-image: url('images/slide2.jpg');
}

.sliding-backgrounds div:nth-child(1) {
    background-image: url('images/slide3.jpg');
}

.sliding-backgrounds div:nth-child(2) {
    background-image: url('images/slide4.jpg');
}

.sliding-backgrounds div:nth-child(3) {
    background-image: url('images/slide5.jpg');
}

.sliding-backgrounds div:nth-child(4) {
    background-image: url('images/slide6.jpg');
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Above overlay */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    /* Ensure text is readable */
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    16.66% {
        transform: translateX(-100%);
    }

    33.33% {
        transform: translateX(-200%);
    }

    50% {
        transform: translateX(-300%);
    }

    66.66% {
        transform: translateX(-400%);
    }

    83.33% {
        transform: translateX(-500%);
    }

    100% {
        transform: translateX(-600%);
    }
}


/* About Section */
.section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--accent);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}


.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image1 {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    height: 450px;
}

.about-image1 img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image1:hover img {
    transform: scale(1.05);
}


.about-image1 p {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}

/* Why Paramedical Section */
.why-paramedical {
    background-color: var(--light);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
    border: 1px solid var(--border);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--primary);
}

.benefit-card h3 i {
    margin-right: 10px;
    color: var(--accent);
}

/* Programs Section */
.programs {
    background-color: var(--light);
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-content {
    padding: 25px;
}

.program-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.program-content p {
    margin-bottom: 20px;
    color: var(--text);
}

.program-duration {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--secondary);
}

.program-duration i {
    margin-right: 10px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--accent);
}

.modal-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.fee-tables {
    overflow-x: auto;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

caption {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary);
    text-align: left;
    margin-bottom: 10px;
    padding-left: 5px;
}

th,
td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
}

tr:nth-child(even) {
    background-color: var(--light);
}

tr:hover {
    background-color: #f1f1f1;
}

.total-row {
    font-weight: bold;
    background-color: rgba(233, 236, 239, 0.5) !important;
}

.about-text2 p {
    font-style: italic;
}


/* Faculty Section */
.faculty {
    background-color: var(--white);
}

.faculty-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.faculty-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border: 1px solid var(--border);
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.faculty-image {
    height: 250px;
    overflow: hidden;
}

.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-info {
    padding: 25px;
}

.faculty-info h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.faculty-info p {
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 15px;
}

/* Career Section */
.career-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--primary);
}

/* Contact Section */
.contact {
    background-color: var(--light);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 5px;
}

.contact-text h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: var(--light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--secondary);
    outline: none;
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo {
    width: 83px;
    height: 70px;
}

.footer-col1 h3 {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.footer-col1 p {
    font-size: 13px;
    font-style: italic;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
}

.footer-col p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-links i {
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        flex: none;
        width: 100%;
    }

    .about-image {
        order: -1;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        transition: all 0.5s ease;
        padding: 30px;
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 15px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .modal-content {
        width: 95%;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .logo-text h1 {
        font-size: 1.0rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .feature-card,
    .program-card {
        padding: 20px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    th,
    td {
        padding: 8px;
        font-size: 0.9rem;
    }
}

/* Notice Bar - Responsive for All Devices */
.notice-bar {
    background-color: var(--accent);
    /* Using your accent color variable */
    color: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 75px;
    /* Matches header height */
    width: 100%;
    z-index: 999;
    /* Below header but above content */
    margin: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-family: inherit;
}

.notice-content {
    display: inline-block;
    white-space: nowrap;
    animation: slideLeft 30s linear infinite;
    padding-left: 100%;
    /* Start offscreen */
}

.notice-content span {
    margin-right: 30px;
    display: inline-block;
    font-weight: 500;
    font-size: 0.95rem;
    vertical-align: middle;
}

/* Link & Button Styles */
.notice-content a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.2s ease;
    padding: 0 5px;
}

.notice-content a:hover {
    color: #ffeb3b;
    /* Yellow on hover */
    text-decoration: none;
}

.notice-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.notice-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Animation */
@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .notice-content {
        animation-duration: 40s;
        /* Slower on medium screens */
    }
}

@media (max-width: 992px) {
    .notice-bar {
        top: 84px;
        /* Adjust if header height changes */
    }
}

@media (max-width: 768px) {
    .notice-bar {
        top: 80px;
        padding: 8px 0;
    }

    .notice-content {
        animation-duration: 50s;
    }

    .notice-content span {
        margin-right: 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .notice-bar {
        top: 115px;
        /* Adjusted for mobile header */
        position: relative;
    }

    .notice-content {
        animation-duration: 60s;
        /* Slowest on smallest screens */
        padding-left: 50%;
        /* Adjust for mobile */
    }

    .notice-content span {
        margin-right: 15px;
        font-size: 0.8rem;
    }
}

/* iOS Notch & Android Special Cases */
@supports (padding: max(0px)) {
    .notice-bar {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }
}

/* Mobile Menu Open State */
.mobile-menu-open .notice-bar {
    top: 0;
    /* Adjust if mobile menu covers header */
    position: relative;
}


/* Announcement Section Styles */
.announcement-bar {
    background: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.announcement-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.alert-badge {
    background: #e74c3c;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.scrolling-notice {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 12px 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-left: 4px solid #e74c3c;
    height: 140px;
}

.scrolling-content {
    display: inline-block;
    white-space: nowrap;
    /* animation: scrollText 30s linear infinite; */
}

.scrolling-content span {
    margin-right: 50px;
    font-size: 1.1rem;
    color: #333;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.notice-btn {
    padding: 8px 20px;
    background: #e74c3c;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
}

.btn-outline {
    background: transparent;
    border: 2px solid #e74c3c;
    color: #e74c3c;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .scrolling-content span {
        margin-right: 30px;
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

.new-badge {
    display: inline-block;
    background-color: #ff0000;
    /* Red color */
    color: white;
    font-size: 0.7em;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 5px;
    animation: blink 1s infinite alternate;
    position: relative;
    top: -1px;
}

@keyframes blink {
    from {
        opacity: 1;
    }

    to {
        opacity: 0.5;
    }
}


/* job button */
.btn1 {
    color: #b20000;
    text-decoration: underline;
    transition: all 0.2s ease;
    /* padding: 0px 5px; */
    border: none;
    font-size: 16px;
    margin-left: 8px;
}

.btn1:hover {
    color: #0e637d;
    text-decoration: none;
    transform: translateY(1px);
    /* transform: scale(1.1); */
    /* 10% zoom */
}