/* Attempt at css :>( */
.menuInner a {
    color: #ffffff !important;
}

.menuInner a:hover {
    color: #00aaff !important;
}

.menuInner .selected a {
    color: #ff6600 !important;
}

.headerContainer {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.headerContainer.shrink {
    padding: 5px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* header items alligned */
.headerContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

Logo edit
.headerContainer .logo {
    display: flex;
    align-items: center;
}

.headerContainer .loginBox,
.headerContainer .searchBox {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.headerContainer > div {
    margin: 0 10px;
}   

.headerContainer {
    padding: 10px 20px;
}

.searchBox input[type="text"] {
    padding: 6px 10px;
    border-radius: 20px;
}


.searchBox button {
    padding: 6px 12px;
    margin-left: 5px;
    border-radius: 20px;
}

/* DS to the image section */
.camera_wrap {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


/* Project aims section */

.project-aims-section {
    display: grid;                     
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;                        
    max-width: 1100px;                
    margin: 0 auto;                    
    overflow: visible !important;      
    color: #e0e0e0; 
}  


.project-aims-section ul {
    background: #00746B;               
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,.5); 
    list-style: disc; 
     transition: all 0.3s ease;                 
}

/* my cool hover */
.project-aims-section ul:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4); 
    
}

.project-aims-section li {
    margin-bottom: 10px;
}


@media (max-width: 768px) {
    .project-aims-section {
        grid-template-columns: 1fr;
    }
}

.project-aims-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #175D68;
}

.project-aims-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #175D68; 
}

.project-aims-header p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.project-aims-header p:last-of-type {
    font-size: 20px;   
    font-weight: 600;  
}

/* Main button */
.join-button {
    display: block;
    width: 90%;              
    max-width: 800px;        
    margin: 40px auto;
    background-color: #ff6600;
    color: #175D68;
    padding: 25px 20px;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: all 0.3s ease;  
}

.join-main {
    display: block;
    font-size: 40px;   
    font-weight: 700;  
}

.join-sub {
    display: block;
    font-size: 25px;
    margin-top: 5px;   
    opacity: 0.9;      
}

/* Hover effect */
.join-button:hover {
    background-color: #e65c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* Gadget Containers */

#id_6NfRKGL {
    position: sticky !important;
    top: 0 !important;
    z-index: 999 !important;
    background-color: #175D68 !important; 
    transition: all 0.3s ease !important;
}


#id_6NfRKGL.shrink {
    background-color: #144B54 !important; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.25) !important;
}


#id_6NfRKGL .menuInner {
    background-color: #175D68 !important;
}


#id_wrAqx8B, #MainContent {
    padding-top: 80px;
}

/* Footer */
/* Horizontal UL */

.footer-wrapper {
    background-color: #175D68;
    padding: 20px 20px;
    border-radius: 12px;
}

.h4 {
    color: #ffffff
}

.links-column ul {
    display: flex;
    justify-content: center;
    gap: 30px; /* nice spacing between buttons */
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-column li a.footer-btn {
    display: inline-block;
    background-color: #ff6600;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 12px 20px;

    border-radius: 25px;
    margin: 0;  /* rely on gap for spacing */
    transition: all 0.3s ease;
}

/* Hover effect */
.links-column li a.footer-btn:hover {
    background-color: #e65c00 !important;
    transform: translateY(-2px);
}