body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #3a4147; /* Blue background */
    color: white;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
}

.logo {
    position: relative; /* Needed for absolute positioning of subtext */
    margin: 0 auto; /* Center the logo container */
    text-align: center; /* Center the subtext */
}
.logo-subtext {
    font-size: 10px;
    color: white; /* Change color as needed */
    margin-top: 5px; /* Space between logo and text */
    letter-spacing: 0.5px; /* Improves readability */
    font-weight: 600; /* Light font weight */
    text-transform: uppercase; /* Optional: makes text all caps */
    opacity: 0.8; /* Slightly transparent */
    display: block; /* Ensures it appears on its own line */
    font-family: 'Arial', sans-serif;
}


.divider {
    height: 2px;
    background-color: #8DC73F; /* Green divider */
    margin: 15px auto;
    width: 90%;
}

.description {
    line-height: 1.6;
    margin: 0 auto 50px;
    text-align: center;
    max-width: 700px; /* Constrain paragraph width */
    font-size: 1.1em; /* Slightly larger text */
    
}
footer {
    margin-top: 40px; /* Increased margin */
    padding: 10px 0;
}

.contact h3 {
    margin-bottom: 20px;
    font-size: 1.3em;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px; /* Increased gap between icons */
    margin-bottom: 30px;
}

.social-icons a {
    color: white;
    font-size: 32px; /* Larger icons */
    transition: transform 0.3s;
    
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #e6e6e6; /* Slightly lighter on hover */
    
}


/* Certification Section */
.certification-section {
    margin: 25px 0 20px; /* Top 25px | Right/Left 0 | Bottom 20px */
    width: 100%;
    clear: both; 
    margin-top: 20px 0;
    
    
}

/* Static Text Styles */
.certified-text {
    color: white;
    padding: 10px 0;
    font-weight: bold;
    font-size: 0.9em;
    text-align: center;
    border-radius: 4px 4px 0 0;
    margin-bottom: 0;
}

/* Logos Marquee Container */
.logos-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background-color: #3a4147;
    border-radius: 0 0 4px 4px;
    padding: 10px 0;
}

/* Marquee Content */
.marquee-content {
    display: inline-block;
    animation: scrollLogos 10s linear infinite;
}

/* Logo Styles */
.logos-marquee img {
    height: 20px;
    width: auto;
    margin: 0 15px;
    vertical-align: middle;
    
}

/* Animation */
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause on hover */
.logos-marquee:hover .marquee-content {
    animation-play-state: paused;
}
/* Tablet (768px and up) */
@media (min-width: 768px) {
    .certified-text {
        padding: 12px 0;
        font-size: 1.1rem;
    }
    
    .logos-marquee {
        padding: 15px 0;
    }
    
    .logos-marquee img {
        height: 25px;
        margin: 0 20px;
    }
    
    .marquee-content {
        animation-duration: 10s; /* Slower on tablets */
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .certified-text {
        font-size: 1.2rem;
        padding: 15px 0;
    }
    
    .logos-marquee img {
        height: 30px;
        margin: 0 25px;
    }
    
    .marquee-content {
        animation-duration: 10s; /* Slowest on desktop */
    }
}

@media (max-width: 767px) {
    .logos-marquee {
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
    
    .logos-marquee img {
        height: 18px;
        margin: 0 10px;
    }
    
    .certified-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 8px 10px;
    }
}
