/* Base styles */
html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(-45deg, #35977e, #357a7b, #3e4d75, #4e3d6f);
    background-attachment: fixed;
    background-size: 300% 300%;
    animation: gradientMove 20s ease infinite;
    font-family: "Poppins", serif;
    font-size: 1em;
    overflow-x: hidden;
}

@keyframes gradientMove{
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

/* Link styles */
a{
    color: #fff;
    text-decoration: none;
}

a:hover{
    color: #fff;
}

/* Header styles */
.header{
    width: 90%;
    max-width: 1000px;
    margin: 0px auto;
    display: flex;
    box-sizing: border-box;
}

.logobox{
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0px;
    display: flex;
    justify-content: space-between;
}

.menu-items{
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
}

.menu-item{
    padding: 10px;
    width: 24%;
    box-sizing: border-box;
}

.menu-item a:hover{
    text-decoration: none;
}

.logo{
    width: 30%;
    min-width: 200px;
    margin: 30px 0 0 0;
}

.logo img{
    width: 100%;
    max-width: 200px;
}

.right-content{
    width: 65%;
    text-align: center;
}

.subject{
    padding: 10px;
    border: 2px solid #eeeeee40;
    border-radius: 6px;
}

.subject:hover{
    background-color: #00000030;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .menu-items {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(-45deg, #35977e, #357a7b, #3e4d75, #4e3d6f);
        display: flex;
        flex-direction: column;
        padding: 80px 20px 20px;
        z-index: 99;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .show-mobile-menu {
        right: 0;
    }
    
    .menu-item {
        width: 100%;
        text-align: left;
        margin: 5px 0;
        padding: 10px;
    }
    
    .subject {
        border: none;
        background-color: rgba(255, 255, 255, 0.2);
    }
}

/* Content containers */
.middle{
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.middle2{
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

/* Typography */
.headertext{
    font-size: 5em;
    color: #fff;
    margin-top: 50px;
}

h1{
    padding: 0;
    margin: 0;
    line-height: 100px;
}

h3{
    padding: 0;
    margin: 0;
    line-height: 48px;
    color: #ddd;
    font-size: 2em;
}

/* Main content area */
.maincontent{
    background-color: #fff;
    margin-top: 150px;
    padding: 0 0 60px 0;
    min-height: 700px;
}

.back{
    background-image: url('https://images2.imgbox.com/97/58/FWWgSz5e_o.png');
    background-position: middle;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
}

/* Sample content grid */
.samplecontent{
    display: flex;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
}

.middleitem{
    border-radius: 12px;
    width: 31%;
    box-sizing: border-box;
    padding: 0px;
    margin-top: -40px;
    box-shadow: rgba(50,50,93,0.25) 0px 50px 100px -20px, rgba(0,0,0,0.3) 0px 30px 60px -30px, rgba(10,37,64,0.35) 0px -2px 6px 0px inset;
}

.middleitem img{
    width: 100%;
    border-radius: 12px;
    display: block;
    border: 5px solid #fff;
}

/* Blue section */
.blue{
    color: #387179;
    margin-top: 85px;
    width: 70%;
}

.bluemiddle{
    line-height: 40px;
    margin: 0 0 20px 0;
}

/* Split layout */
.split{
    display: flex;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.right2{
    width: 29%;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 150px;
    justify-content: space-around;
    align-content: flex-start;
}

/* Call to action */
.cta{
    padding: 30px;
    border: 3px solid #ddd;
    margin: 100px 0 0 0;
    border-radius: 12px;
    width: 40%;
    text-align: center;
    margin: 90px auto 0 auto;
}

.cta:hover{
    background-color: #ddd;
    transition: ease-in-out 0.2s;
}

.bluemiddle img{
    width: 100%;
}

.right img{
    width: 100%;
}

.ctabutton{
    color: #387179;
    font-weight: 600;
}

.ctabutton:hover{
    color: #387179;
}

/* Secondary section */
.secondary{
    padding: 30px 0;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    color: #ffffff98;
}

.video{
    aspect-ratio: 6/3.36;
    border: 0;
    width: 60%;
    border-radius: 6px;
    background-color: #fff;
}

.vidbox{
    padding: 20px;
    border-radius: 12px;
    margin-top: 16px;
}

/* Services section */
.services-container{
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.services-title{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #fff;
    position: relative;
    text-transform: uppercase;
}

.services-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card{
    background-color: #00000020;
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: 0.5s;
}

.service-card:hover::before{
    left: 100%;
}

.service-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.1);
}

.service-card h3{
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 30px;
}

.service-card p{
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.6;
}

@media(max-width: 768px){
    .services-container{
        padding: 15px;
    }
    .services-title{
        font-size: 2.5rem;
    }
    .services-grid{
        grid-template-columns: 1fr;
    }
}

/* About section */
.aboutsection{
    width: 100%;
    background-color: #00000020;
    padding: 50px;
    box-sizing: border-box;
    border-radius: 12px;
    margin: 50px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    border: 1px solid #ffffff40;
}

.aboutleft{
    width: 27%;
    box-sizing: border-box;
    margin: 60px 0 0 0;
}

.aboutleft img{
    border-radius: 6px;
    margin: 0 0 20px 0;
    width: 100%;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.aboutright{
    width: 67%;
    color: #fff;
    box-sizing: border-box;
}

.h2{
    color: #ffffff99;
    line-height: 20px;
}

.h5{
    line-height: 10px;
}

.esubplace{
    color: #ffffff;
    padding: 10px;
    background-color: #00000020;
    border-radius: 6px;
    margin: 0 0 10px 0;
    border-left: 4px solid #00000020;
    margin-bottom: 20px;
    padding: 15px;
    border-left: 4px solid #eeeeee20;
    border-radius: 5px;
}

.esubplace strong{
    font-size: 1.2em;
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.esubplace p{
    font-size: 1em;
    color: #ddd;
    line-height: 1.5;
    margin: 0;
}

/* Timeline section */
.timeline-container{
    max-width: 1000px;
    margin: 60px auto;
    padding: 20px;
    position: relative;
}

.timeline-content h2{
    margin-bottom: 15px;
    color: #fff;
    padding: 0;
    font-size: 2.2rem;
    font-weight: 700;
    background: none;
    -webkit-text-fill-color: white;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.timeline-image{
    width: 100%;
    height: 220px;
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.timeline-image img{
    width: 105%;
    height: 105%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.timeline-details{
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.timeline-tag{
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    margin-right: 5px;
}

.timeline-link{
    background: rgba(255,255,255,0.15);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.timeline-link:hover{
    background: rgba(255,255,255,0.25);
}

.timeline{
    position: relative;
    padding: 30px 0;
}

.timeline::before{
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), rgba(255,255,255,0.8), rgba(255,255,255,0.3));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.timeline-item{
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}

.timeline-dot{
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    left: 50%;
    margin-left: -12px;
    top: 20px;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.3), 0 0 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot{
    transform: scale(1.2);
    background: #28a77e;
}

.timeline-content{
    position: relative;
    width: 42%;
    padding: 25px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.timeline-content:hover{
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.timeline-item.left .timeline-content{
    float: left;
    margin-right: 55%;
}

.timeline-item.right .timeline-content{
    float: right;
    margin-left: 55%;
}

.timeline-item::after{
    content: '';
    display: table;
    clear: both;
}

.timeline-item.left .timeline-content::after{
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 12px 0 12px 12px;
    border-color: transparent transparent transparent rgba(255,255,255,0.1);
    top: 20px;
    right: -12px;
    transition: all 0.3s ease;
}

.timeline-item.right .timeline-content::after{
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 12px 12px 12px 0;
    border-color: transparent rgba(255,255,255,0.1) transparent transparent;
    top: 20px;
    left: -12px;
    transition: all 0.3s ease;
}

.timeline-item:hover.left .timeline-content::after{
    border-color: transparent transparent transparent rgba(255,255,255,0.15);
}

.timeline-item:hover.right .timeline-content::after{
    border-color: transparent rgba(255,255,255,0.15) transparent transparent;
}

.timeline-content h2{
    margin-bottom: 15px;
    color: #fff;
    padding: 0;
    font-size: 2.2rem;
    font-weight: 700;
    display: inline-block;
    text-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.timeline-content p{
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
}

.timeline-content::before{
    content: attr(data-year);
    position: absolute;
    top: -15px;
    background: linear-gradient(135deg, #28a77e, #4a3173);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    font-size: 0.9rem;
}

.timeline-item.left .timeline-content::before{
    right: 20px;
}

.timeline-item.right .timeline-content::before{
    left: 20px;
}

@media screen and (max-width: 768px){
    .timeline::before{
        left: 30px;
    }
    .timeline-dot{
        left: 30px;
        margin-left: 0;
    }
    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content{
        float: right;
        width: calc(100% - 70px);
        margin-left: 70px;
        margin-right: 0;
    }
    .timeline-item.left .timeline-content::after,
    .timeline-item.right .timeline-content::after{
        left: -12px;
        border-width: 12px 12px 12px 0;
        border-color: transparent rgba(255,255,255,0.1) transparent transparent;
        right: auto;
    }
    .timeline-item:hover.left .timeline-content::after,
    .timeline-item:hover.right .timeline-content::after{
        border-color: transparent rgba(255,255,255,0.15) transparent transparent;
    }
    .timeline-item.left .timeline-content::before,
    .timeline-item.right .timeline-content::before{
        left: 20px;
        right: auto;
    }
}

/* Form elements */
label{
    font-size: 0.8em;
}

/* About us heading */
.aboutusheading{
    text-align: center;
    color: #ffffff;
}

/* Testimonials */
.testimonials{
    color: #fff;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials h2{
        color: #fff;
        text-align: center;
        font-size: 3rem;
        margin-bottom: 70px;
        position: relative;
        padding-bottom: 20px;
    }
    
    .testimonials h2::after{
        color: #fff;
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(135deg, #28a77e, #4a3173);
        border-radius: 2px;
    }
    
    .testimonial-grid{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        padding: 20px;
    }
    
    .testimonial-card{
        background: rgba(255, 255, 255, 0.8);
        padding: 30px;
        margin: 25px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        max-width: 400px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: 300px;
    }
    
    .testimonial-card:hover{
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }
    
    .testimonial-text{
        font-size: 1rem;
        color: #fff;
    }
    
    .client-info{
        display: flex;
        align-items: center;
        gap: 15px;
        color: #fff;
    }
    
    .client-details{
        flex-grow: 1;
    }
    
    .client-info h3{
        margin: 0 0 5px 0;
        font-size: 1.3rem;
    }
    
    .client-info p{
        color: #ddd;
        margin: 0;
        font-size: 1rem;
    }
    
    @media(max-width: 768px){
        .testimonials h2{
            font-size: 2.2rem;
        }
        .testimonial-grid{
            grid-template-columns: 1fr;
            padding: 10px;
        }
    }
    
    /* Center container */
    .center{
        width: 90%;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    /* Contact section */
    .contactus{
        width: 90%;
        max-width: 1000px;
        margin: 50px auto 0 auto;
        border-radius: 6px;
    }
    
    /* Timeline adjustments */
    .timeline-item{
        position: relative;
        margin-bottom: 30px;
        width: 100%;
    }
    
    .timeline-dot{
        position: absolute;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #fff;
        left: 50%;
        margin-left: -9px;
        top: 25px;
        z-index: 1;
        box-shadow: 0 0 0 4px rgba(255,255,255,0.3), 0 0 10px rgba(0,0,0,0.3);
        transition: all 0.3s ease;
    }
    
    .timeline-content{
        position: relative;
        width: 45%;
        padding: 20px;
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        border: 1px solid rgba(255,255,255,0.2);
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        transition: all 0.3s ease;
        margin-top: 0;
    }
    
    .timeline-item.left .timeline-content::after{
        top: 25px;
    }
    
    .timeline-item.right .timeline-content::after{
        top: 25px;
    }
    
    .timeline{
        position: relative;
        padding: 15px 0;
    }
    
    /* Contact content */
    .contactcontent{
        width: 90%;
        max-width: 1000px;
        margin: 0 auto;
        padding: 50px;
        color: #fff;
        text-align: center;
    }
    
    .contactcontent h3{
        color: #fff;
    }
    
    .contactemail{
        padding: 20px;
        border: 2px solid #fff;
        width: 40%;
        border-radius: 6px;
        margin: 12px auto 0 auto;
    }
    
    /* Footer */
    footer{
        margin-top: 100px;
        background-color: #00000030;
        width: 100%;
        padding: 50px 0;
        color: #ffffff;
    }
    
    .footer{
        width: 90%;
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
    
    .footer-section{
        width: 50%;
    }
    
    .flogo{
        width: 200px;
    }
    
    .flogo img{
        width: 100%;
    }
    
    .footer-section h4{
        color: #ffffff50;
        margin-bottom: 20px;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .socmedlinks{
        padding: 8px 0;
        color: #fff;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .socmedlinks:hover{
        color: #ffffff80;
        cursor: pointer;
    }
    
    .contact-info{
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .footer-links a{
        color: #ffffff;
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
        transition: color 0.3s ease;
    }
    
    .footer-links a:hover{
        color: #ffffff80;
    }
    
    .newsletter input{
        padding: 10px;
        width: 100%;
        margin-bottom: 10px;
        border: none;
        border-radius: 4px;
    }
    
    .newsletter button{
        padding: 10px 20px;
        background-color: #3498db;
        border: none;
        color: white;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .newsletter button:hover{
        background-color: #2980b9;
    }
    
    .footerparts{
        width: 60%;
        display: flex;
    }
    
    .recognised{
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .smallimage img{
        width: 100%;
    }
    
    .smallimage{
        width: 45%;
        box-sizing: border-box;
    }
    
    .wide{
        width: 100%;
    }
    
    .rec{
        margin-top: 150px 0 0 0;
    }
    
    /* CRC section */
    .crc {
        padding: 20px;
        display: flex;
        gap: 30px;
    }
    
    .crcinside {
        display: flex;
        gap: 10px;
    }
    
    .crcil {
        width: 50px;
    }
    
    .crcil img {
        width: 100%;
    }
    
    /* Midpoint */
    .midpoint {
        width: 90%;
        max-width: 1000px;
        margin: 0 auto;
        align: center;
    }
    
    /* CSS-only Carousel */
    .image-carousel {
        position: relative;
        width: 100%;
        overflow: hidden;
        border-radius: 8px;
    }
    
    .image-carousel input {
        display: none;
    }
    
    .carousel-slides {
        width: 600%;
        display: flex;
        transition: transform 0.5s ease;
    }
    
    .carousel-slide {
        width: 16.666%;
    }
    
    .carousel-slide img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .carousel-controls {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 10;
    }
    
    /* Animation for auto-sliding */
    @keyframes carousel-autoplay {
        0%, 15% { transform: translateX(0); }
        20%, 35% { transform: translateX(-16.666%); }
        40%, 55% { transform: translateX(-33.333%); }
        60%, 75% { transform: translateX(-50%); }
        80%, 95% { transform: translateX(-66.666%); }
        100% { transform: translateX(-83.333%); }
    }
    
    .image-carousel:hover .carousel-slides {
        animation-play-state: paused;
    }
    
    .carousel-slides {
        animation: carousel-autoplay 30s infinite;
    }
    
    /* Testimonial section */
    .testimonial-section {

        color: #555;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        color: #555;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 40px;
        font-size: 32px;
        color: #fff;
        width: 100%;
    }
    
    .testimonials {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .testimonials2 {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 20px;
        max-width: 1200px;
        margin: 0 auto;
        flex-wrap: wrap;
    }
    
    .testimonial-card {
        background: rgba(255, 255, 255, 0.8);
        padding: 30px;
        margin: 25px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        max-width: 400px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: 300px;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        background-color: #ffffff80;
    }
    
    .quote {
        font-size: 16px;
        margin-bottom: 20px;
        font-style: italic;
        line-height: 1.7;
    }
    
    .author {

        align-items: center;
    }
    
    .author-image {
        margin-right: 15px;
    }
    
    .author-image img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .name {
        font-weight: bold;
        font-size: 16px;
        color: #666;
    }
    
    .position {
        font-size: 14px;
        color: #666;
    }
    
    .author-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    
    @media (max-width: 768px) {
        .testimonials {
            grid-template-columns: 1fr;
            justify-content: center;
        }
        
        .section-title {
            font-size: 28px;
        }
        
        .testimonial-card {
            margin: 15px 0;
            width: 100%;
        }
    }
    
    /* UOS section */
    .uos {
        width: 45%;
    }

/* Content Manager Styles */
.content-updated {
  animation: content-updated-flash 1s ease;
}

@keyframes content-updated-flash {
  0% { background-color: rgba(255, 255, 0, 0.3); }
  100% { background-color: transparent; }
}

.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.content-error-notification {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: rgba(200, 0, 0, 0.8);
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  z-index: 9999;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    /* Header & Navigation */
    .logobox {
        flex-direction: column;
        align-items: center;
    }
    
    .logo {
        width: 60%;
        margin: 20px auto;
        text-align: center;
    }
    
    .right-content {
        width: 100%;
    }
    
    .menu-items {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
        gap: 10px;
    }
    
    .menu-item {
        width: auto;
        padding: 8px 15px;
    }
    
    /* Hero Section */
    .headertext {
        font-size: 2.5em;
        line-height: 1.2;
        margin-top: 30px;
        text-align: center;
    }
    
    .crc {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    /* Content Sections */
    .samplecontent {
        flex-direction: column;
        align-items: center;
    }
    
    .middleitem {
        width: 90%;
        margin-bottom: 20px;
    }
    
    .middleitem:first-child {
        margin-top: -40px;
    }
    
    .middleitem:not(:first-child) {
        margin-top: 10px;
    }
    
    /* Split Section */
    .split {
        flex-direction: column;
    }
    
    .blue {
        width: 100%;
        margin-top: 40px;
    }
    
    .right2 {
        width: 100%;
        padding-top: 40px;
    }
    
    /* CTA Section */
    .cta {
        width: 80%;
        margin: 50px auto 0 auto;
    }
    
    /* Services Section */
    .services-container {
        flex-direction: column;
    }
    
    .service-box {
        margin-bottom: 20px;
    }
    
    /* Timeline Section */
    .timeline-container {
        padding: 10px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
        margin-left: 0;
    }
    
    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        float: right;
        width: calc(100% - 70px);
        margin-left: 70px;
        margin-right: 0;
    }
    
    .timeline-item.left .timeline-content::after,
    .timeline-item.right .timeline-content::after {
        left: -12px;
        border-width: 12px 12px 12px 0;
        border-color: transparent rgba(255,255,255,0.1) transparent transparent;
        right: auto;
    }
    
    .timeline-content h2 {
        font-size: 1.5rem;
    }
    
    /* Testimonials Section */
    .testimonial-card {
        margin: 15px 0;
        padding: 20px;
        height: auto;
        min-height: 250px;
    }
    
    /* Contact Section */
    .contactemail {
        width: 90%;
        word-break: break-all;
    }
    
    /* Footer */
    .footer {
        flex-direction: column;
    }
    
    .footer-section2 {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .flogo {
        margin: 0 auto;
    }
    
    .footerparts {
        width: 100%;
        flex-direction: column;
    }
    
    .footer-section {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .headertext {
        font-size: 2em;
    }
    
    h1 {
        line-height: normal;
    }
    
    .bluemiddle {
        line-height: 1.3;
        font-size: 1.8em;
    }
    
    .timeline-content h2 {
        font-size: 1.3rem;
    }
    
    .timeline-image {
        height: 180px;
    }
    
    .service-box h3 {
        font-size: 1.3rem;
    }
}

.test-long {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    margin: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
    text-align: center;
}

.test-long:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
